diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-02 02:17:58 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-02 02:17:58 +0200 |
commit | c15ecf50a1f2366904fdaa08237ab496c5725391 (patch) | |
tree | dcc1be7746db322098c2bbcf4f1e92a30965aa56 /bin | |
parent | 0323d1a66453603da7e4937c2c1ca9d3817c414c (diff) | |
download | jenkins.debian.net-c15ecf50a1f2366904fdaa08237ab496c5725391.tar.xz |
reproducible: make maximum arch specific
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index c0b2497b..bcb7b371 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -441,7 +441,7 @@ def scheduler(arch): 'WHERE s.architecture="{arch}"' total = int(query_db(query.format(arch=arch))[0][0]) log.info('Currently scheduled packages in all suites: ' + str(total)) - if total > 750: + if total > MAXIMUM[arch]: generate_schedule() # from reproducible_html_indexes log.info(str(total) + ' packages already scheduled' + ', nothing to do here.') |