jscheffl commented on code in PR #38446:
URL: https://github.com/apache/airflow/pull/38446#discussion_r1538213865
##########
airflow/decorators/base.py:
##########
@@ -480,6 +480,8 @@ def _expand(self, expand_input: ExpandInput, *, strict:
bool) -> XComArg:
except AttributeError:
operator_name = self.operator_class.__name__
+ task_display_name = partial_kwargs.get("task_display_name", None)
Review Comment:
Took a while until I got what you wanted to express :-) The root of the code
was from the original PR and needed to drill into this. Was not expressed in
previous review. Nevertheless migrated the filed to a property and alongside
the path touching the code. Now I understood a bit more technical details about
task mapping internals :-D
--
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]