ephraimbuddy commented on code in PR #38446:
URL: https://github.com/apache/airflow/pull/38446#discussion_r1540487005
##########
airflow/models/baseoperator.py:
##########
@@ -1188,6 +1196,21 @@ def dag(self, dag: DAG | None):
self._dag = dag
+ @property
+ def task_display_name(self) -> str:
+ return self._task_display_property_value or self.task_id
+
+ @property
+ def label(self) -> str | None:
Review Comment:
Would it be ok if we do this in a separate PR?
--
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]