I notice in our workflow when a task in the dag er...
# ask-the-community
b
I notice in our workflow when a task in the dag errors and there are other parallel tasks running that they are aborted. Is it possible to have those tasks that are already running finish so they don't need to be recalculated in the next execution?
j
yeah set the workflow failure policy to this
@workflow(failure_policy=WorkflowFailurePolicy.FAIL_AFTER_EXECUTABLE_NODES_COMPLETE)
this should wait until all possible tasks got executed and then will fail
b
🤌
Phenomenal
152 Views