Don't use mem chan cloning, it doesn't actually broadcast

cached_feeds
Tyler Goodlet 2021-04-05 08:06:01 -04:00
parent ddae08493b
commit 1281755d65
1 changed files with 3 additions and 1 deletions

View File

@ -298,7 +298,9 @@ async def exec_loop(
)
if _exec_mode == 'paper':
n.start_soon(simulate_fills, stream.clone(), client)
# TODO: make this an actual broadcast channels as in:
# https://github.com/python-trio/trio/issues/987
n.start_soon(simulate_fills, stream, client)
# TODO: lots of cases still to handle