mirror of
https://github.com/clearml/clearml
synced 2025-01-31 00:56:57 +00:00
Fix pipeline breaks when continue_on_abort is set to true
This commit is contained in:
parent
3094d57140
commit
c9cbe1c903
@ -4356,7 +4356,7 @@ class PipelineDecorator(PipelineController):
|
||||
|
||||
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())
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user