[Qa-jenkins-scm] [jenkins.debian.net] 01/12: reproducible: simplify scheduler

Holger Levsen holger at moszumanska.debian.org
Thu Mar 12 18:20:38 UTC 2015


This is an automated email from the git hooks/post-receive script.

holger pushed a commit to branch master
in repository jenkins.debian.net.

commit a663717a6722c9791ce26aad6d021705a5b054f6
Author: Holger Levsen <holger at layer-acht.org>
Date:   Thu Mar 12 15:59:48 2015 +0100

    reproducible: simplify scheduler
---
 bin/reproducible_scheduler.py | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index 0a2139e..96a8ffb 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -230,11 +230,11 @@ def scheduler():
     # packages with new versions
     new = {}
     if total <= 100:
-        many_new = 60
+        many_new = 100
     elif total <= 200:
-        many_new = 40
+        many_new = 75
     else:
-        many_new = 20
+        many_new = 50
     log.info('Requesting ' + str(many_new) + ' new versions in ' + suite + '...')
     for suite in SUITES:
         new[suite] = scheduler_new_versions(suite, many_new)
@@ -244,14 +244,12 @@ def scheduler():
 
     # old packages
     old = {}
-    if total <= 150:
+    if total <= 250:
         many_old = 25 # multiplied by 10, usually, see below
-    elif total <= 250:
-        many_old = 15 # also...
     elif total <= 350:
-        many_old = 10 # ...
+        many_old = 17 # also...
     elif total <= 450:
-        many_old = 5 # ...
+        many_old = 10 # ...
     else:
         many_old = 1  # ...
     for suite in SUITES:

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/qa/jenkins.debian.net.git



More information about the Qa-jenkins-scm mailing list