From b7198e0e12e5a3a89932f74752640c817cbdf923 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Fri, 12 Jun 2015 18:52:18 +0200 Subject: reproducible: scheduler: simplify the suite prioritaizing code --- bin/reproducible_scheduler.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'bin/reproducible_scheduler.py') diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index f01c78da..1f6500bd 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -295,12 +295,7 @@ def scheduler(): 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.append(suite) - for suite in priotized_suite_order: + for suite in sorted(SUITES, key=lambda x: x != 'unstable') 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