Compare commits
13 Commits
b064ded813
...
4025fd244a
Author | SHA1 | Date |
---|---|---|
|
4025fd244a | |
|
7b506d29da | |
|
2ac39c3233 | |
|
8d7fe58ffa | |
|
bbdb506728 | |
|
2b9990b0b3 | |
|
eda92ef458 | |
|
70e3e6e9f0 | |
|
fba70577f7 | |
|
d37dd0e974 | |
|
0c157f82ed | |
|
7e43fc56f6 | |
|
38289e872e |
|
@ -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