From 332f6d50c214ff747c183de21cd82428c1703c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Jan=C3=9Fen?= Date: Sun, 8 Feb 2026 08:59:21 +0100 Subject: [PATCH] [Bug] Wait on deletion - for consistency --- src/executorlib/task_scheduler/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/executorlib/task_scheduler/base.py b/src/executorlib/task_scheduler/base.py index bba2622a..c6719753 100644 --- a/src/executorlib/task_scheduler/base.py +++ b/src/executorlib/task_scheduler/base.py @@ -234,4 +234,4 @@ def __del__(self): Clean-up the resources associated with the Executor. """ with contextlib.suppress(AttributeError, RuntimeError): - self.shutdown(wait=False) + self.shutdown(wait=True)