hussein-awala commented on code in PR #31608:
URL: https://github.com/apache/airflow/pull/31608#discussion_r1210197858
##########
airflow/utils/task_group.py:
##########
@@ -176,6 +177,10 @@ def _check_for_group_id_collisions(self,
add_suffix_on_collision: bool):
else:
self._group_id = f"{base}__{suffixes[-1] + 1}"
+ def _update_default_args(self, parent_group: TaskGroup):
+ if parent_group.default_args:
+ self.default_args.update(parent_group.default_args)
Review Comment:
Interesting, I hadn't thought of this case.
--
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]