# HG changeset patch # User Matt Johnston # Date 1433864269 -28800 # Node ID 830ee5663703e231ebba13bdbc18a0f7a0411a5d # Parent c5f8375b12a2d6c16a4d6a474eda10e424c0cd36 increase waiter timeout diff -r c5f8375b12a2 -r 830ee5663703 py/configwaiter.py --- a/py/configwaiter.py Tue Jun 09 23:27:44 2015 +0800 +++ b/py/configwaiter.py Tue Jun 09 23:37:49 2015 +0800 @@ -36,7 +36,7 @@ 300) D("waiter status %d" % r.status) if r.status == 200: - rawresp = yield from asyncio.wait_for(r.text(), 300) + rawresp = yield from asyncio.wait_for(r.text(), 600) resp = utils.json_load_round_float(rawresp) @@ -52,7 +52,7 @@ yield from asyncio.sleep(30) except Exception as e: - E("Error watching config: %s" % str(e)) + EX("Error watching config: %s" % str(e))