increase athena test timeout

albatross
Adeeb Shihadeh 2020-12-19 16:13:29 -08:00
parent 8828928961
commit 63cdf2a70c
1 changed files with 3 additions and 2 deletions

View File

@ -101,11 +101,12 @@ def with_http_server(func):
'HandlerClass': HTTPRequestHandler,
'bind': host})
p.start()
now = time.time()
start = time.monotonic()
port = None
while 1:
if time.time() - now > 5:
if time.monotonic() - start > 10:
raise Exception('HTTP Server did not start')
try:
port = port_queue.get(timeout=0.1)
requests.put(f'http://{host}:{port}/qlog.bz2', data='')