Compare commits
15 Commits
12e371b027
...
76b5547c2d
Author | SHA1 | Date |
---|---|---|
|
76b5547c2d | |
|
08811f9a61 | |
|
b577180773 | |
|
f12c452d96 | |
|
3531c2edc1 | |
|
97dd7e766a | |
|
ab1463d942 | |
|
5314cb79d4 | |
|
0c0b7116e3 | |
|
19c343e8b2 | |
|
b7883325a9 | |
|
37ca081555 | |
|
44b8c70521 | |
|
e6af97c596 | |
|
95ace5acb8 |
|
@ -1250,12 +1250,6 @@ async def load_aio_clients(
|
||||||
|
|
||||||
for i in range(connect_retries):
|
for i in range(connect_retries):
|
||||||
try:
|
try:
|
||||||
log.info(
|
|
||||||
'Trying `ib_async` connect\n'
|
|
||||||
f'{host}: {port}\n'
|
|
||||||
f'clientId: {client_id}\n'
|
|
||||||
f'timeout: {connect_timeout}\n'
|
|
||||||
)
|
|
||||||
await ib.connectAsync(
|
await ib.connectAsync(
|
||||||
host,
|
host,
|
||||||
port,
|
port,
|
||||||
|
@ -1373,9 +1367,7 @@ async def load_clients_for_trio(
|
||||||
a ``tractor.to_asyncio.open_channel_from()``.
|
a ``tractor.to_asyncio.open_channel_from()``.
|
||||||
|
|
||||||
'''
|
'''
|
||||||
async with load_aio_clients(
|
async with load_aio_clients() as accts2clients:
|
||||||
disconnect_on_exit=False,
|
|
||||||
) as accts2clients:
|
|
||||||
|
|
||||||
to_trio.send_nowait(accts2clients)
|
to_trio.send_nowait(accts2clients)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue