We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5876578 + 3ca63ae commit 6f58ce7Copy full SHA for 6f58ce7
tests/ci.py
@@ -22,10 +22,10 @@ def on_value_changed(client, value):
22
sys.exit(0)
23
24
25
-def wdt_task(client, ts=[None]):
+def wdt_task(client, args, ts=[None]):
26
if ts[0] is None:
27
ts[0] = time.time()
28
- if time.time() - ts[0] > 5:
+ if time.time() - ts[0] > 10:
29
loop = asyncio.get_event_loop()
30
loop.set_exception_handler(exception_handler)
31
logging.error("Timeout waiting for variable")
0 commit comments