# HG changeset patch # User Matt Johnston # Date 1433864269 -28800 # Node ID 6fb9d5f654ff1b428a819a327bab0175a120b678 # Parent 26eee8591f6160b99f7d55334c7e45858ba1c14e increase waiter timeout diff -r 26eee8591f61 -r 6fb9d5f654ff 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))