diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-07-20 11:03:54 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-07-20 11:03:54 +0200 |
commit | 63cc70fec1f280f05ee0c4fd50edf7a52f406af6 (patch) | |
tree | a536e9f5149fa2df841bf507b40f80a20d98b58e | |
parent | 797e09ae9a8bc78070350dbf3133df56eb19a8ab (diff) | |
download | jenkins.debian.net-63cc70fec1f280f05ee0c4fd50edf7a52f406af6.tar.xz |
reproducible Debian: sync (re-)scheduling frequencies for the different archs
-rwxr-xr-x | bin/reproducible_scheduler.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index f0d12c4a..20a618a3 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -62,9 +62,9 @@ LIMITS_404 defines how many packages with status 404 are rescheduled at max. """ # only old packages older than this will be rescheduled -MINIMUM_AGE = {'amd64': 14, 'i386': 14, 'armhf': 28} +MINIMUM_AGE = {'amd64': 21, 'i386': 21, 'armhf': 21} # maximum queue size, see explainations above -MAXIMA = {'amd64': 750, 'i386': 750, 'armhf': 600} +MAXIMA = {'amd64': 750, 'i386': 750, 'armhf': 750} # limits, see explainations above LIMITS = { 'untested': { @@ -79,9 +79,9 @@ LIMITS = { 'experimental': {'*': 440}, }, 'armhf': { - 'testing': {'*': 500}, - 'unstable': {'*': 500}, - 'experimental': {'*': 500}, + 'testing': {'*': 440}, + 'unstable': {'*': 440}, + 'experimental': {'*': 440}, }, }, 'new': { @@ -147,9 +147,9 @@ LIMITS = { 'experimental': {1: (300, 70), 2: (500, 50), '*': 0}, }, 'armhf': { - 'testing': {1: (300, 500), 2: (600, 400), '*': 0}, - 'unstable': {1: (300, 555), 2: (600, 444), '*': 0}, - 'experimental': {1: (300, 50), 2: (600, 35), '*': 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}, } } } |