From 9541a997625dfa800dbe1dcfc996930646e85a2e Mon Sep 17 00:00:00 2001 From: Bohdan Dhzus <8112226+rashboldb@users.noreply.github.com> Date: Thu, 24 Apr 2025 15:31:07 +0300 Subject: [PATCH] Fix argument order mismatch in PipelineController (#1407) Co-authored-by: Bohdan Dhzus --- clearml/automation/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearml/automation/controller.py b/clearml/automation/controller.py index 31312d30..7c9ad1a7 100755 --- a/clearml/automation/controller.py +++ b/clearml/automation/controller.py @@ -1998,7 +1998,7 @@ class PipelineController(object): if self._thread: return True - self._prepare_pipeline(step_task_completed_callback, step_task_created_callback) + self._prepare_pipeline(step_task_created_callback, step_task_completed_callback) self._thread = Thread(target=self._daemon) self._thread.daemon = True self._thread.start()