ib._util: ignore timeout-errs when crash-handling `pyvnc` connects
parent
fdea8556d7
commit
848c8ae533
|
|
@ -250,7 +250,9 @@ async def vnc_click_hack(
|
||||||
'connection': 'r'
|
'connection': 'r'
|
||||||
}[reset_type]
|
}[reset_type]
|
||||||
|
|
||||||
with tractor.devx.open_crash_handler():
|
with tractor.devx.open_crash_handler(
|
||||||
|
ignore={TimeoutError,},
|
||||||
|
):
|
||||||
client = await AsyncVNCClient.connect(
|
client = await AsyncVNCClient.connect(
|
||||||
VNCConfig(
|
VNCConfig(
|
||||||
host=host,
|
host=host,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue