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-09-26.13:47:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1506433660.63.0.423479648948.issue31593@psf.upfronthosting.co.za>
In-reply-to
Content
The bpo-31151 (socketserver.ForkingMixIn.server_close() leaks zombie processes) was fixed in the master branch, but 2.7 and 3.6 branches were not changed.

I proposed to modify test_socketserver to explicitly waits until child processes complete. See attached PR.

Example of leaked child processes the on "x86 Gentoo Refleaks 3.6" buildbot:

http://buildbot.python.org/all/builders/x86%20Gentoo%20Refleaks%203.6/builds/102/steps/test/logs/stdio

0:26:11 load avg: 5.72 [ 62/405] test_socketserver passed -- running: test_multiprocessing_forkserver (594 sec)
beginning 6 repetitions
123456
Warning -- reap_children() reaped child process 6891
.Warning -- reap_children() reaped child process 6976
Warning -- reap_children() reaped child process 6981
.Warning -- reap_children() reaped child process 7059
.Warning -- reap_children() reaped child process 7136
..Warning -- reap_children() reaped child process 7306
.
History
Date User Action Args
2017-09-26 13:47:40vstinnersetrecipients: + vstinner
2017-09-26 13:47:40vstinnersetmessageid: <1506433660.63.0.423479648948.issue31593@psf.upfronthosting.co.za>
2017-09-26 13:47:40vstinnerlinkissue31593 messages
2017-09-26 13:47:40vstinnercreate