diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-11 02:32:46 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-11 02:32:46 +0100 |
commit | 0b3b10cfee5687c987ff36519f890921235439ea (patch) | |
tree | 10b189ad78c9a66a35204dff16eed62d1c9a42bb /bin | |
parent | a75c209a8c6d877d4590e5bffd02c1e9a41a0a47 (diff) | |
download | jenkins.debian.net-0b3b10cfee5687c987ff36519f890921235439ea.tar.xz |
reproducible: schedule more packages
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 3f4413b9..3a192cce 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -220,8 +220,8 @@ def scheduler(): # untested packages untested = {} for suite in SUITES: - log.info('Requesting 200 untested packages in ' + suite + '...') - untested[suite] = scheduler_untested_packages(suite, 200) + log.info('Requesting 250 untested packages in ' + suite + '...') + untested[suite] = scheduler_untested_packages(suite, 250) total += len(untested[suite]) log.info('Received ' + str(len(untested[suite])) + ' untested packages in ' + suite + ' to schedule.') log.info('==============================================================') @@ -243,12 +243,12 @@ def scheduler(): # old packages old = {} - if total <= 75: + if total <= 150: many_old = 25 # multiplied by 10, usually, see below - elif total <= 150: + elif total <= 250: many_old = 10 # ... else: - many_old = 1 + many_old = 5 for suite in SUITES: if suite != 'experimental': many_old = many_old*10 # experimental is roughly one tenth of the other suites in size |