We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04175d4 commit 772c047Copy full SHA for 772c047
1 file changed
src/ezmsg/core/backendprocess.py
@@ -311,7 +311,7 @@ async def shutdown_units() -> None:
311
312
shutdown_future = asyncio.run_coroutine_threadsafe(shutdown_units(), loop=loop)
313
try:
314
- shutdown_future.result(timeout=10.0)
+ shutdown_future.result(timeout=5.0)
315
except KeyboardInterrupt:
316
shutdown_future.result()
317
except TimeoutError:
@@ -322,7 +322,7 @@ async def shutdown_units() -> None:
322
323
revert_future = asyncio.run_coroutine_threadsafe(context.revert(), loop=loop)
324
325
- revert_future.result(timeout=10.0)
+ revert_future.result(timeout=5.0)
326
327
revert_future.result()
328
0 commit comments