Sasha Ayvazov
09/14/2023, 6:12 PMallowed_failure_ratio
parameter, but that seems to have been removed when moving away from sdk tasks. There's the WorkflowFailurePolicy
, but while that would allow every sub-task to run, it doesn't seem that it would allow D to run.
My current approach is to wrap A in a try/except
that returns an empty result, but D can't inspect the results to ignore A, so the aggregator has to decide if this is a valid result or not.
Does anyone have a better idea for how to return what is effectively a "I failed, but it's okay, just ignore me" signal?Yee
Sasha Ayvazov
09/14/2023, 7:33 PMYee