From 8437d0cabef29be4bac2fbca3648b5b58aa50371 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Tue, 11 Aug 2015 20:02:33 +0000 Subject: reproducible: scheduler: also turn the global limit arch-dependant --- bin/reproducible_scheduler.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'bin/reproducible_scheduler.py') diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 9dc75ed8..e9943529 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -79,11 +79,9 @@ LIMITS = { } # define an "arch factor", so the scheduling limits differ between archs -ARCH_SHARE = { - 'amd64': 10, - 'armhf': 3, -} +ARCH_SHARE = {'amd64': 10, 'armhf': 3} +MAXIMUM = {'amd64': 750, 'armhf': 750} class Limit: def __init__(self, arch, queue): @@ -539,7 +537,7 @@ if __name__ == '__main__': for arch in ARCHS: log.info('Scheduling for %s...', arch) overall = int(query_db(query.format(arch))[0][0]) - if overall > 750: + if overall > MAXIMUM[arch]: log.info('%s packages already scheduled, nothing to do.', overall) continue log.info('%s packages already scheduled, scheduling some more...', -- cgit v1.2.3-54-g00ecf