Fix PipelineController start should not kill the process when done

Fix PY3.5 compatibility
This commit is contained in:
allegroai 2021-10-19 10:33:35 +03:00
parent 192bb03809
commit 94d28ed44f

View File

@ -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
"""