This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author asvetlov
Recipients Manoj C, asvetlov, yselivanov
Date 2019-09-13.11:57:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1568375832.84.0.944369337406.issue38104@roundup.psfhosted.org>
In-reply-to
Content
You spawn too many subprocesses that finish virtually at the same time.
It leads to wakeup_fd overrun.

Python 3.6 is in security mode, sorry (and the fix is impossible).
Python 3.7 has warn_on_full_buffer=False flag for  https://docs.python.org/3/library/signal.html#signal.set_wakeup_fd but asyncio doesn't use it for reasons.

Python 3.8 doesn't subscribe for SIGCHLD by default, thus the provided example finishes without any warning.

I'm going to closing the issue as won't fix.
History
Date User Action Args
2019-09-13 11:57:12asvetlovsetrecipients: + asvetlov, yselivanov, Manoj C
2019-09-13 11:57:12asvetlovsetmessageid: <1568375832.84.0.944369337406.issue38104@roundup.psfhosted.org>
2019-09-13 11:57:12asvetlovlinkissue38104 messages
2019-09-13 11:57:12asvetlovcreate