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-18.16:24:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503073499.39.0.93886151367.issue31233@psf.upfronthosting.co.za>
In-reply-to
Content
test_logging has a race condition: sometimes, it leaks dangling threads on FreeBSD: bpo-30830.

I identified the root issue: socketserver.ThreadingMixIn spawns threads without waiting for their completion in server_close(). This issue is very similar to socketserver.ForkingMixIn which leaks child processes and so create zombie processes. See bpo-31151.
History
Date User Action Args
2017-08-18 16:24:59vstinnersetrecipients: + vstinner
2017-08-18 16:24:59vstinnersetmessageid: <1503073499.39.0.93886151367.issue31233@psf.upfronthosting.co.za>
2017-08-18 16:24:59vstinnerlinkissue31233 messages
2017-08-18 16:24:59vstinnercreate