Merge pull request #14188 from edx/zoldak/bok-choy-startup-time

Give the bok choy server more time to start up
This commit is contained in:
Jesse Zoldak
2017-01-05 18:06:21 -05:00
committed by GitHub

View File

@@ -83,7 +83,7 @@ def wait_for_server(server, port):
attempts = 0
server_ok = False
while attempts < 20:
while attempts < 30:
try:
connection = httplib.HTTPConnection(server, port, timeout=10)
connection.request('GET', '/')