eladkal commented on issue #52245:
URL: https://github.com/apache/airflow/issues/52245#issuecomment-3004734501

   I'm not able to reproduce. It's working fine on both 3.0.2 and main branch
   
   ```
   from airflow.utils.task_group import TaskGroup
   from airflow import DAG
   from airflow.operators.empty import EmptyOperator
   from datetime import datetime
   
   with DAG(
       dag_id='example_dag123',
       start_date=datetime(2024, 1, 1)
   ) as dag:
       with TaskGroup(group_id='tg1') as tg1:
           t1 = EmptyOperator(task_id='t1')
       with TaskGroup(group_id='tg2') as tg2:
           t2 = EmptyOperator(task_id='t2')
   
       t1 >> t2
   ```
   
   
![Image](https://github.com/user-attachments/assets/345abb99-0233-40dc-90c8-e8d5a7669b08)
   


-- 
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-unsubscr...@airflow.apache.org

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

Reply via email to