-
Notifications
You must be signed in to change notification settings - Fork 558
New issue
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
Subprocess leaking #185
Comments
This was referenced Aug 1, 2018
Fixed in uvloop 0.11.1 |
Thanks for submitting this bug! |
Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PYTHONASYNCIODEBUG
in env?: yesA lot of subsequent failing calls to
asyncio.create_subprocess_exec
cause aToo many open files
OS error. Using the standard event loop, I do not get an error thrown.Here is a minimal example:
Output:
The same code runs until the end when removing
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
.The text was updated successfully, but these errors were encountered: