MarosMK commented on code in PR #30284:
URL: https://github.com/apache/airflow/pull/30284#discussion_r1154150394
##########
airflow/utils/task_group.py:
##########
@@ -368,8 +369,10 @@ def child_id(self, label):
Prefix label with group_id if prefix_group_id is True. Otherwise
return the label
as-is.
"""
- if self.prefix_group_id and self.group_id:
- return f"{self.group_id}.{label}"
+ if self.prefix_group_id:
+ group_id = self.group_id
Review Comment:
Yes, that might be true.
--
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]