summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-04-19 15:06:00 (GMT)
committerGitHub <noreply@github.com>2022-04-19 15:06:00 (GMT)
commita885f10325eb2fc27cd50ace5614666ea688ab66 (patch)
treef1df55161d4daea00545833562997fd247b66e8f
parentc213cccc9bffe1e6612ad19745cef8066d2e1938 (diff)
downloadcpython-a885f10325eb2fc27cd50ace5614666ea688ab66.zip
cpython-a885f10325eb2fc27cd50ace5614666ea688ab66.tar.gz
cpython-a885f10325eb2fc27cd50ace5614666ea688ab66.tar.bz2
gh-91231: multiprocessing BaseManager waits 1.0 second (#91701)
Shutting down a multiprocessing BaseManager now waits for 1 second until the process completes, rather than 0.1 second, after the process is terminated.
-rw-r--r--Lib/multiprocessing/managers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/managers.py b/Lib/multiprocessing/managers.py
index b6b4cdd..22292c7 100644
--- a/Lib/multiprocessing/managers.py
+++ b/Lib/multiprocessing/managers.py
@@ -677,7 +677,7 @@ class BaseManager(object):
if hasattr(process, 'terminate'):
util.info('trying to `terminate()` manager process')
process.terminate()
- process.join(timeout=0.1)
+ process.join(timeout=1.0)
if process.is_alive():
util.info('manager still alive after terminate')