Switch back to using async for and dont install signal handlers on cryptofeed

size_in_shm_token
Guillermo Rodriguez 2022-08-23 16:15:35 -03:00
parent cb8099bb8c
commit 6669ba6590
No known key found for this signature in database
GPG Key ID: EC3AB66D5D83B392
2 changed files with 11 additions and 12 deletions

View File

@ -613,7 +613,9 @@ class CryptoFeedRelay:
})
if not self._fh.running:
self._fh.run(start_loop=False)
self._fh.run(
start_loop=False,
install_signal_handlers=False)
self._loop = asyncio.get_event_loop()
# sync with trio
@ -664,7 +666,9 @@ class CryptoFeedRelay:
})
if not self._fh.running:
self._fh.run(start_loop=False)
self._fh.run(
start_loop=False,
install_signal_handlers=False)
self._loop = asyncio.get_event_loop()
# sync with trio

View File

@ -154,10 +154,10 @@ async def stream_quotes(
if len(last_trades) == 0:
last_trade = None
while not last_trade:
typ, quote = await stream.receive()
async for typ, quote in stream:
if typ == 'trade':
last_trade = Trade(**(quote['data']))
break
else:
last_trade = Trade(**(last_trades[0]))
@ -177,14 +177,9 @@ async def stream_quotes(
feed_is_live.set()
try:
while True:
typ, quote = await stream.receive()
topic = quote['symbol']
await send_chan.send({topic: quote})
except trio.ClosedResourceError:
...
async for typ, quote in stream:
topic = quote['symbol']
await send_chan.send({topic: quote})
@tractor.context