hussein-awala commented on issue #32793: URL: https://github.com/apache/airflow/issues/32793#issuecomment-1648680979
The default `trigger_rule` in Airflow is `all_success` (check the [doc](https://airflow.apache.org/docs/apache-airflow/stable/core-concepts/dags.html#trigger-rules)), so when one of the upstream tasks finishes with a state `failed` or `upstream_failed`, the task state will passes to `upstream_failed`, and when one of them finishes with `skipped` state (without any fail in the others), the task state passes to `skipped` too. To achieve your goal, you can set the `trigger_rule` to `none_failed` in the task `first_task` of the second task group. I close the issue, and we can reopen it if needed. -- 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]
