Change the webapp default port

The current webapp port number collides with zuul's hence
the two services are unable to run at the same time.

Change-Id: I94959f567848624a62bea01753a79402a655e1b8
This commit is contained in:
Bardia Keyoumarsi
2016-07-18 15:56:48 -07:00
parent e345107476
commit 49c363dccf

View File

@@ -54,7 +54,7 @@ class Cache(object):
class WebApp(threading.Thread):
log = logging.getLogger("nodepool.WebApp")
def __init__(self, nodepool, port=8001, cache_expiry=1):
def __init__(self, nodepool, port=8005, cache_expiry=1):
threading.Thread.__init__(self)
self.nodepool = nodepool
self.port = port