kyungjunleeme commented on PR #53455:
URL: https://github.com/apache/airflow/pull/53455#issuecomment-3084215014
hello :)
In airflow.providers.standard.utils.skipmixin.SkipMixin.skip_all_except, I
suggest enhancing the downstream task resolution logic by replacing:
```python
downstream_tasks = _ensure_tasks(task.downstream_list) # before
```
with
```python
downstream_tasks =
_ensure_tasks(task.get_flat_relatives(upstream=False)) # after
```
--
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]