[pypy-commit] benchmarks default: Reduce the delay and number of retries.

arigo noreply at buildbot.pypy.org
Wed Sep 7 16:11:48 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r143:867c2dc2b16d
Date: 2011-09-07 16:11 +0200
http://bitbucket.org/pypy/benchmarks/changeset/867c2dc2b16d/

Log:	Reduce the delay and number of retries.

diff --git a/saveresults.py b/saveresults.py
--- a/saveresults.py
+++ b/saveresults.py
@@ -93,7 +93,7 @@
     info += str(data['commitid']) + ", benchmark " + data['benchmark']
     print(info)
     try:
-        retries = [10, 20, 30, 60, 150, 300]
+        retries = [1, 2, 3, 6]
         while True:
             try:
                 f = urllib2.urlopen(SPEEDURL + 'result/add/', params)


More information about the pypy-commit mailing list