amoghrajesh commented on issue #46609:
URL: https://github.com/apache/airflow/issues/46609#issuecomment-2647358165
We will be adding "xcom_key" at the interface level for operator links. For
example:
```
class DummyTestOperator(BaseOperator):
# We need to ignore type check here due to 2.7 compatibility import
operator_extra_links = ( # type: ignore[assignment]
RaiseErrorLink(),
NoResponseLink(),
FooBarLink(),
AirflowLink(),
)
```
For such cases, each of the links here are attached to this operator and
they have XCOM keys of their own.
So while doing a lookup from webserver, we will fetch all the links
pertaining to the operator.
We also are storing at the serdag level to assist with this
--
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]