diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-01-29 01:52:54 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-01-29 01:52:54 +0100 |
commit | 71593042610214c62e00c787e1b3af8a2a7c914d (patch) | |
tree | 5bd68dda8c48372f4bcf7ffdfda5d193ad439ea5 | |
parent | 5160d08109407921f97aac4e04cfd9bbed737413 (diff) | |
download | jenkins.debian.net-71593042610214c62e00c787e1b3af8a2a7c914d.tar.xz |
reproducible debian armhf: only schedule old packages older than 42 days
-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 689b4dfa..2f01f385 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -64,7 +64,7 @@ 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': 7, 'armhf': 28} +MINIMUM_AGE = {'amd64': 7, 'armhf': 42} # maximum queue size, see explainations above MAXIMA = {'amd64': 750, 'armhf': 600} # limits, see explainations above |