From bc2b86196b143b226a8a78f6c90cf2e49dec2612 Mon Sep 17 00:00:00 2001 From: Robert Izzard <r.izzard@surrey.ac.uk> Date: Tue, 9 Aug 2022 19:51:19 +0100 Subject: [PATCH] change _kill_child_processes() to just kill, not terminate --- binarycpython/utils/grid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/binarycpython/utils/grid.py b/binarycpython/utils/grid.py index db2be2d26..b781c4c81 100644 --- a/binarycpython/utils/grid.py +++ b/binarycpython/utils/grid.py @@ -2566,9 +2566,9 @@ class Population( """ Function to kill all child processes. """ - for p in processes: - if p.is_alive(): - p.terminate() +# for p in processes: +# if p.is_alive(): +# p.terminate() for p in processes: if p.is_alive(): p.kill() -- GitLab