diff options
author | Victor Stinner <vstinner@python.org> | 2022-04-19 15:06:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-19 15:06:00 (GMT) |
commit | a885f10325eb2fc27cd50ace5614666ea688ab66 (patch) | |
tree | f1df55161d4daea00545833562997fd247b66e8f | |
parent | c213cccc9bffe1e6612ad19745cef8066d2e1938 (diff) | |
download | cpython-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.py | 2 |
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') |