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 gregory.p.smith
Recipients BreamoreBoy, gregory.p.smith, pitrou, sbt
Date 2016-06-02.21:36:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464903402.8.0.800565730293.issue18751@psf.upfronthosting.co.za>
In-reply-to
Content
Capturing some notes from looking at this after Dan Sully asked me questions about the issue during today's pycon sprints:

within multiprocessing/managers.py serve_forever():

the accepter thread is an infinite loop. i think this issue also wants to join() on the threads that the accepter spawns. which also implies they need to be kept track of and that we should change the accepter's while True: into a "while some event that indicates it should exit is not set"...

but we'd also not want a pool keeping track of accepter's infinitely spawned threads to grow forever, so something needs to effectively garbage collect those periodically.
History
Date User Action Args
2016-06-02 21:36:42gregory.p.smithsetrecipients: + gregory.p.smith, pitrou, BreamoreBoy, sbt
2016-06-02 21:36:42gregory.p.smithsetmessageid: <1464903402.8.0.800565730293.issue18751@psf.upfronthosting.co.za>
2016-06-02 21:36:42gregory.p.smithlinkissue18751 messages
2016-06-02 21:36:42gregory.p.smithcreate