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:
@@ -54,7 +54,7 @@ class Cache(object):
|
|||||||
class WebApp(threading.Thread):
|
class WebApp(threading.Thread):
|
||||||
log = logging.getLogger("nodepool.WebApp")
|
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)
|
threading.Thread.__init__(self)
|
||||||
self.nodepool = nodepool
|
self.nodepool = nodepool
|
||||||
self.port = port
|
self.port = port
|
||||||
|
Reference in New Issue
Block a user