ephraimbuddy commented on code in PR #26518:
URL: https://github.com/apache/airflow/pull/26518#discussion_r977538506
##########
airflow/ti_deps/deps/trigger_rule_dep.py:
##########
@@ -162,6 +166,9 @@ def _evaluate_trigger_rule(
changed = ti.set_state(State.UPSTREAM_FAILED, session)
elif skipped:
changed = ti.set_state(State.SKIPPED, session)
+ elif removed and successes and ti.map_index > -1:
+ if ti.map_index >= successes:
Review Comment:
This would apply
https://github.com/apache/airflow/blob/0c7b4cbf62925cf359648eff146f9f4b0c6e7775/airflow/ti_deps/deps/trigger_rule_dep.py#L165-L166
it won't get to line 169.
Line 169 is only satisfied if we have `removed`, `successes,` no `failed`,
no `skipped` and mapped task
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]