ephraimbuddy opened a new pull request, #31502:
URL: https://github.com/apache/airflow/pull/31502
The frequent warning about dependency being already registered for a dag is
not needed since task.downstream_task_ids is a set and task.upstream_task_ids
is also a set. The warning usually occurs if your tasks are set up similar to
this:
```
task1 = mytask()
for i in range(5):
task2 = anothertask()
task1 >> task2
```
in which case it warns 5 times about task1 dependency is already set.
This PR removes the warning
--
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]