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 davin, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2018-06-27.15:24:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530113051.34.0.56676864532.issue30356@psf.upfronthosting.co.za>
In-reply-to
Content
The bug can easily be reproduced on Linux using this change:

diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py
index 04df26bac6..3d952407c2 100644
--- a/Lib/multiprocessing/managers.py
+++ b/Lib/multiprocessing/managers.py
@@ -649,7 +649,7 @@ class BaseManager(object):
             except Exception:
                 pass
 
-            process.join(timeout=1.0)
+            process.join(timeout=0.0)
             if process.is_alive():
                 util.info('manager still alive')
                 if hasattr(process, 'terminate'):
History
Date User Action Args
2018-06-27 15:24:11vstinnersetrecipients: + vstinner, paul.moore, tim.golden, zach.ware, steve.dower, davin
2018-06-27 15:24:11vstinnersetmessageid: <1530113051.34.0.56676864532.issue30356@psf.upfronthosting.co.za>
2018-06-27 15:24:11vstinnerlinkissue30356 messages
2018-06-27 15:24:11vstinnercreate