Commit 5c1f838d by Jesse Zoldak

Give the bok choy server more time to start up

parent 18e3e095
...@@ -83,7 +83,7 @@ def wait_for_server(server, port): ...@@ -83,7 +83,7 @@ def wait_for_server(server, port):
attempts = 0 attempts = 0
server_ok = False server_ok = False
while attempts < 20: while attempts < 30:
try: try:
connection = httplib.HTTPConnection(server, port, timeout=10) connection = httplib.HTTPConnection(server, port, timeout=10)
connection.request('GET', '/') connection.request('GET', '/')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment