From 94d28ed44f6ea1c9d1115fb31039c0e8dc34977c Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Tue, 19 Oct 2021 10:33:35 +0300 Subject: [PATCH] Fix PipelineController start should not kill the process when done Fix PY3.5 compatibility --- clearml/automation/controller.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/clearml/automation/controller.py b/clearml/automation/controller.py index d7e2492a..91cbeb2e 100644 --- a/clearml/automation/controller.py +++ b/clearml/automation/controller.py @@ -665,7 +665,7 @@ class PipelineController(object): ): pass :param wait: If True (default), start the pipeline controller, return only - after the pipeline is done (completed/aborted/failed) + after the pipeline is done (completed/aborted/failed) :return: True, if the controller started. False, if the controller did not start. @@ -690,7 +690,6 @@ class PipelineController(object): step_task_completed_callback=step_task_completed_callback, wait=wait ) - leave_process(0) return True @@ -2793,7 +2792,7 @@ class PipelineDecorator(PipelineController): add_pipeline_tags=False, # type: bool target_project=None, # type: Optional[str] abort_on_failure=False, # type: bool - pipeline_execution_queue='services', # type: Optional[str] + pipeline_execution_queue='services' # type: Optional[str] ): # type: (...) -> Callable """