You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/07/21 13:13:41 UTC

[GitHub] [airflow] Gollum999 commented on issue #25165: Dynamic Tasks inside of TaskGroup do not have group_id prepended to task_id

Gollum999 commented on issue #25165:
URL: https://github.com/apache/airflow/issues/25165#issuecomment-1191470152

   I appreciate the fast response, but could we re-open this?  #25217 only fixes one of the three symptoms that I mentioned above.
   
   I think the "root" fix is to prepend the `group_id` to `MappedOperator.task_id`, like what `BaseOperator` does:
   ```
   if task_group:
       self.task_id = task_group.child_id(task_id)
   else:
       self.task_id = task_id
   ```


-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org