[pypy-commit] buildbot default: try to disable keepalive for xerxes

fijal noreply at buildbot.pypy.org
Sun Mar 24 00:35:31 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r759:be7989c3eb77
Date: 2013-03-23 16:29 -0700
http://bitbucket.org/pypy/buildbot/changeset/be7989c3eb77/

Log:	try to disable keepalive for xerxes

diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -268,6 +268,8 @@
 BUILDLINUXARM = "build-pypy-c-linux-armel"
 BUILDJITLINUXARM = "build-pypy-c-jit-linux-armel"
 
+extra_opts= {'xerxes': {'keepalive-interval': None}}
+
 BuildmasterConfig = {
     'slavePortnum': slavePortnum,
 
@@ -328,7 +330,7 @@
 
     'status': [status, ircbot],
 
-    'slaves': [BuildSlave(name, password)
+    'slaves': [BuildSlave(name, password, **extra_opts.get(name, {}))
                for (name, password)
                in passwords.iteritems()],
 


More information about the pypy-commit mailing list