Skip to content

Commit

Permalink
Fix pipeline breaks when continue_on_abort is set to true
Browse files Browse the repository at this point in the history
  • Loading branch information
allegroai committed May 17, 2024
1 parent 3094d57 commit c9cbe1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clearml/automation/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -4356,7 +4356,7 @@ def result_wrapper(return_name):

cls._wait_for_node(_node)
if (_node.job.is_failed() and not _node.continue_on_fail) or \
(_node.job.is_aborted() and not _node.job.continue_on_abort):
(_node.job.is_aborted() and not _node.continue_on_abort):
raise ValueError(
'Pipeline step "{}", Task ID={} failed'.format(_node.name, _node.job.task_id())
)
Expand Down

0 comments on commit c9cbe1c

Please sign in to comment.