phanikumv commented on code in PR #44681:
URL: https://github.com/apache/airflow/pull/44681#discussion_r1870756420
##########
providers/src/airflow/providers/common/compat/lineage/hook.py:
##########
@@ -96,10 +96,18 @@ class NoOpCollector:
It is used when you want to disable lineage collection.
"""
+ # for providers that supports asset rename but the airflow core is
still under 2.10.0
def add_input_asset(self, *_, **__):
pass
def add_output_asset(self, *_, **__):
pass
+ # for providers that dose not support asset rename and the airflow
core is still under 2.10.0
Review Comment:
```suggestion
# for providers that do not support asset rename and the airflow
core is still under 2.10.0
```
--
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]