Up the kb event queue size

symbol_search
Tyler Goodlet 2021-05-06 16:37:56 -04:00
parent 534553a6f5
commit a5826e6e22
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ async def open_key_stream(
) -> trio.abc.ReceiveChannel:
send, recv = trio.open_memory_channel(1)
# 1 to force eager sending
send, recv = trio.open_memory_channel(16)
kc = KeyCloner()
kc._send_chan = send