uranusjr commented on code in PR #38446:
URL: https://github.com/apache/airflow/pull/38446#discussion_r1540489199
##########
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:
Yeah probably, but since there’s another issue to fix (the `dump_only` one
above) it might be better to just do it here…
--
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]