Comment exception debug in ib request error block
parent
1e433ca4f4
commit
957686a9fe
|
@ -1175,12 +1175,12 @@ async def open_client_proxy() -> MethodProxy:
|
||||||
|
|
||||||
except (
|
except (
|
||||||
RequestError,
|
RequestError,
|
||||||
BaseException,
|
# BaseException,
|
||||||
)as err:
|
)as err:
|
||||||
code = getattr(err, 'code', None)
|
code = getattr(err, 'code', None)
|
||||||
if code:
|
if code:
|
||||||
msg = err.message
|
msg = err.message
|
||||||
await tractor.breakpoint()
|
# await tractor.breakpoint()
|
||||||
|
|
||||||
# TODO: retreive underlying ``ib_insync`` error?
|
# TODO: retreive underlying ``ib_insync`` error?
|
||||||
if (
|
if (
|
||||||
|
|
Loading…
Reference in New Issue