mariotaddeucci commented on issue #18840: URL: https://github.com/apache/airflow/issues/18840#issuecomment-938741928
@mehmax When your task is within a Task Group, your callable task_id will be the task_id prefixed with the group_id (i.e. group_id.task_id). This ensures the uniqueness of the task_id across the DAG. In your case the template should be `ti.xcom_pull(task_ids='group1.task1')`. -- 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]
