From d1776e42786badf5aa4bc13faec0dc9d6f584cf0 Mon Sep 17 00:00:00 2001 From: Michael Millspaugh Date: Mon, 8 Nov 2021 12:59:22 -0500 Subject: [PATCH] fix hang waiting for threads to close --- python/task_manager/worker_thread.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/task_manager/worker_thread.py b/python/task_manager/worker_thread.py index d2a0f854..be79aeb7 100644 --- a/python/task_manager/worker_thread.py +++ b/python/task_manager/worker_thread.py @@ -55,7 +55,9 @@ def shut_down(self): self._results_dispatcher = None self._process_tasks = False self._wait_condition.notifyAll() - self.join() + + self._process_tasks = False + #self.join() def run(self): """