From 7bc0ae59871f46e68482a4aa836a8744eed33c65 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Thu, 28 May 2015 13:41:08 +0200 Subject: reproducible: schedule packages in unstable before those in other suites --- bin/reproducible_scheduler.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bin/reproducible_scheduler.py') diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index f07734ea..baa41ed3 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -279,7 +279,13 @@ def scheduler(): log.info('==============================================================') now_queued_here = {} + # make sure to schedule packages in unstable first + # (but keep the view ordering everywhere else) + priotized_suite_order = ['unstable'] for suite in SUITES: + if suite not in priotized_suite_order: + priotized_suite_order += suite + for suite in priotized_suite_order: query = 'SELECT count(*) ' + \ 'FROM schedule AS p JOIN sources AS s ON p.package_id=s.id ' + \ 'WHERE s.suite="{suite}"'.format(suite=suite) -- cgit v1.2.3-54-g00ecf