alexkruc commented on PR #25280:
URL: https://github.com/apache/airflow/pull/25280#issuecomment-1205582529
@uranusjr You're right, in the described implementation, the last task with
an `owner_link` overwrote the link, and the behavior was weird.
I've tried to fix it but have not proceeded because I couldn't show it as a
Broken DAG.
Finally, I've decided to take your advice and make the `owner_link` to be a
DAG parameter and not a task one, as you described:
```python
with DAG(..., owner_links={"owner1": link1, "owner2": link2, ...}):
task1 = Operator(..., owner="owner2")
```
I've also changed the description of this feature on my first message with
the new examples and added extra pictures to show the broken DAG behavior and
such.
Can you please take a look again? 🙏
--
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]