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 vstinner
Recipients vstinner
Date 2017-08-10.11:30:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1502364613.47.0.513275379013.issue31151@psf.upfronthosting.co.za>
In-reply-to
Content
The problem is that socketserver.ForkinMixin doesn't wait until all children completes. It's only calls os.waitpid() in non-blocking module (using os.WNOHANG) after each loop iteration. If a child process completes after the last call to ForkingMixIn.collect_children(), the server leaks zombie processes.

The server must wait until all children completes. Attached PR implements that.

The bug was be reproduced with the attached forkingmixin_sleep.patch.

haypo@selma$ ./python -m test -v -u all test_socketserver --fail-env-changed -m '*Fork*'
(...)
Warning -- reap_children() reaped child process 17093
Warning -- reap_children() reaped child process 17094
(...)
History
Date User Action Args
2017-08-10 11:30:13vstinnersetrecipients: + vstinner
2017-08-10 11:30:13vstinnersetmessageid: <1502364613.47.0.513275379013.issue31151@psf.upfronthosting.co.za>
2017-08-10 11:30:13vstinnerlinkissue31151 messages
2017-08-10 11:30:13vstinnercreate