[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[dak/master] Debug suites might also miss the source package



If a binary-only upload including debug packages gets accepted from a
policy queue, the source might be missing from the debug suite.

Reported-by: Matthias Klumpp <mak@debian.org>
---
 dak/process_policy.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dak/process_policy.py b/dak/process_policy.py
index 7b6b964..8966dd6 100755
--- a/dak/process_policy.py
+++ b/dak/process_policy.py
@@ -195,9 +195,9 @@ def comment_accept(upload, srcqueue, comments, transaction):
             if debug_suite is not None and is_debug_binary(db_binary):
                 copy_to_suite = debug_suite
 
-            # build queues may miss the source package if this is a
-            # binary-only upload.
-            if suite != upload.target_suite:
+            # build queues and debug suites may miss the source package
+            # if this is a binary-only upload.
+            if copy_to_suite != upload.target_suite:
                 transaction.copy_source(
                     db_binary.source,
                     copy_to_suite,
-- 
2.1.4


Reply to: