diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-01-16 18:18:50 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-01-16 18:18:50 +0100 |
commit | 2ff29c9aebabc956fe1fe6453aa6036c621c14f5 (patch) | |
tree | 7a5443b823bf88934a112413dd31008eec2dfb50 | |
parent | 74fdb4ff0bf038fae5a7a97c71f1ea36f5eed0b8 (diff) | |
download | jenkins.debian.net-2ff29c9aebabc956fe1fe6453aa6036c621c14f5.tar.xz |
Revert "reproducible: completly stop scheduling testing for now (fix colon)"
This reverts commit 602d3380dd8648c6cbaa081b7cfe06645ae4f3a0.
-rwxr-xr-x | bin/reproducible_scheduler.py | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index ed1ebd2e..8ec392c3 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -66,19 +66,19 @@ MAXIMA = {'amd64': 750, 'armhf': 600} LIMITS = { 'untested': { 'amd64': { - 'testing': {'*': 0}, + 'testing': {'*': 440}, 'unstable': {'*': 440}, 'experimental': {'*': 440}, }, 'armhf': { - 'testing': {'*': 0}, + 'testing': {'*': 177}, 'unstable': {'*': 177}, 'experimental': {'*': 177}, }, }, 'new': { 'amd64': { - 'testing': {1: (100, 0), 2: (200, 0), '*': 0}, + 'testing': {1: (100, 250), 2: (200, 200), '*': 0}, 'unstable': {1: (100, 250), 2: (200, 200), '*': 150}, 'experimental': {1: (100, 250), 2: (200, 200), '*': 150}, }, @@ -90,7 +90,7 @@ LIMITS = { }, 'ftbfs+depwait': { 'amd64': { - 'testing': {1: (250, 0), 2: (350, 0), '*': 0}, + 'testing': {1: (250, 40), 2: (350, 20), '*': 0}, 'unstable': {1: (250, 40), 2: (350, 20), '*': 0}, 'experimental': {1: (250, 40), 2: (350, 20), '*': 0}, }, @@ -102,7 +102,7 @@ LIMITS = { }, 'old': { 'amd64': { - 'testing': {1: (300, 0), 2: (500, 0), '*': 0}, + 'testing': {1: (300, 800), 2: (500, 666), '*': 0}, 'unstable': {1: (300, 1000), 2: (500, 888), '*': 0}, 'experimental': {1: (300, 70), 2: (500, 50), '*': 0}, }, @@ -478,11 +478,7 @@ def schedule_404_versions(arch, total): log.info('Requesting 404 packages in %s/%s...', suite, arch) # hard code the limit to 42 as 404s rarely happen anyway - if suite != 'testing': - temp_limit = 42 - else: - temp_limit = 0 - packages[suite] = query_404_versions(suite, arch, temp_limit) + packages[suite] = query_404_versions(suite, arch, 42) log.info('Received ' + str(len(packages[suite])) + ' 404 packages in ' + suite + '/' + arch + ' to schedule.') log.info('--------------------------------------------------------------') |