Message320592
| 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'): |
|