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 pitrou
Recipients pitrou, sbt
Date 2013-08-15.18:13:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376590396.18.0.712968689777.issue18751@psf.upfronthosting.co.za>
In-reply-to
Content
The Server class in multiprocessing.managers creates daemon threads and never joins them. This is in contrast with e.g. the Pool class, which creates daemon threads but uses util.Finalize to join them.

(not joining daemon threads may have adverse effects such as resource leaks or otherwise unexpected glitches)

Issue spawned from http://bugs.python.org/issue8713#msg195178.
History
Date User Action Args
2013-08-15 18:13:16pitrousetrecipients: + pitrou, sbt
2013-08-15 18:13:16pitrousetmessageid: <1376590396.18.0.712968689777.issue18751@psf.upfronthosting.co.za>
2013-08-15 18:13:16pitroulinkissue18751 messages
2013-08-15 18:13:15pitroucreate