# HG changeset patch # User Matt Johnston # Date 1433866406 -28800 # Node ID 55cae4f27e75407687bc1d7e9ceec066a9bcb5f9 # Parent 54ef7f84487da154dbea5db10d5cefa8779d9ad6 catch timeout diff -r 54ef7f84487d -r 55cae4f27e75 py/configwaiter.py --- a/py/configwaiter.py Wed Jun 10 00:10:08 2015 +0800 +++ b/py/configwaiter.py Wed Jun 10 00:13:26 2015 +0800 @@ -51,6 +51,9 @@ # longer timeout to avoid spinning yield from asyncio.sleep(30) + except asyncio.TimeoutError: + D("configwaiter http timed out") + pass except Exception as e: EX("Error watching config: %s" % str(e))