You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 23, 2017. It is now read-only.
A very interesting thing i am looking at is the fact that this code is using 100% CPU.
while True:
await asyncio.sleep(0)
I believe this should not be the case as it means the only way to avoid it is to use a non-zero constant like sleep(0.0001) or sleep(0.01) in the case PYTHONASYNCIODEBUG=1.