summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/reproducible_scheduler.py6
1 files changed, 6 insertions, 0 deletions
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)