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 has been archived by the owner on Apr 29, 2021. It is now read-only.
Due to python issue https://bugs.python.org/issue17468 wraping a yield in a try clause will cause the generator to be uncollected by gc.
This is the case with the sleep() function in https://github.com/haypo/trollius/blob/trollius/trollius/tasks.py.
When the event loop is closed before the sleep() is done, the generator will be left uncollected, with all references in the coroutine that called sleep().
The text was updated successfully, but these errors were encountered:
Due to python issue https://bugs.python.org/issue17468 wraping a
yield
in a try clause will cause the generator to be uncollected by gc.This is the case with the
sleep()
function in https://github.com/haypo/trollius/blob/trollius/trollius/tasks.py.When the event loop is closed before the
sleep()
is done, the generator will be left uncollected, with all references in thecoroutine
that calledsleep()
.The text was updated successfully, but these errors were encountered: