We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In idom.Layout we use asyncio.Queue.put_nowait as if it were threadsafe. However we need to use loop.call_soon_threadsafe instead.
idom.Layout
asyncio.Queue.put_nowait
loop.call_soon_threadsafe
The text was updated successfully, but these errors were encountered:
fixes: #222
0d37cdf
7236f20
rmorshea
Successfully merging a pull request may close this issue.
In
idom.Layout
we useasyncio.Queue.put_nowait
as if it were threadsafe. However we need to useloop.call_soon_threadsafe
instead.The text was updated successfully, but these errors were encountered: