[pypy-commit] buildbot default: don't bind to a specific hostname

antocuni noreply at buildbot.pypy.org
Mon May 9 17:50:25 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r507:fbfd6614447e
Date: 2011-05-09 17:50 +0200
http://bitbucket.org/pypy/buildbot/changeset/fbfd6614447e/

Log:	don't bind to a specific hostname

diff --git a/bitbucket_hook/run.py b/bitbucket_hook/run.py
--- a/bitbucket_hook/run.py
+++ b/bitbucket_hook/run.py
@@ -13,7 +13,8 @@
 
 
 if __name__ == '__main__':
-    HOST_NAME = 'wyvern.cs.uni-duesseldorf.de'
+    #HOST_NAME = 'wyvern.cs.uni-duesseldorf.de'
+    HOST_NAME = ''
     PORT_NUMBER = 9237
     main.app.run(
         host = HOST_NAME if 'deploy' in sys.argv else 'localhost',


More information about the pypy-commit mailing list