From 296f7970dfdc4966f355602e78a994843e8c540a Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Thu, 11 Feb 2021 14:44:54 +0200 Subject: [PATCH] Fix file not found error (no 2) interpreted as aborted (i.e. ctrl-c) --- clearml_agent/helper/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml_agent/helper/process.py b/clearml_agent/helper/process.py index a0983ac..d92348a 100644 --- a/clearml_agent/helper/process.py +++ b/clearml_agent/helper/process.py @@ -420,7 +420,7 @@ SOURCE_COMMAND = select_for_platform(linux="source", windows="call") class ExitStatus(object): success = 0 failure = 1 - interrupted = 2 + interrupted = -2 COMMAND_SUCCESS = 0