From 29a5df407f25c425d6a49dfa2c1fbdf8c336c8cb Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Sun, 24 Jan 2021 09:05:18 +0200 Subject: [PATCH] Fix remote_execution from jupyter notebook --- clearml/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml/task.py b/clearml/task.py index 8168d720..6359f4c6 100644 --- a/clearml/task.py +++ b/clearml/task.py @@ -1867,7 +1867,7 @@ class Task(_Task): # leave this process. if exit_process: LoggerRoot.get_base_logger().warning('Terminating local execution process') - exit(0) + os._exit(0) # noqa return task