summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-02 02:17:58 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-02 02:17:58 +0200
commitc15ecf50a1f2366904fdaa08237ab496c5725391 (patch)
treedcc1be7746db322098c2bbcf4f1e92a30965aa56
parent0323d1a66453603da7e4937c2c1ca9d3817c414c (diff)
downloadjenkins.debian.net-c15ecf50a1f2366904fdaa08237ab496c5725391.tar.xz
reproducible: make maximum arch specific
-rwxr-xr-xbin/reproducible_scheduler.py2
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.')