raphaelauv commented on issue #37332: URL: https://github.com/apache/airflow/issues/37332#issuecomment-3711446418
still present on airflow 3.1.5 <img width="1025" height="609" alt="Image" src="https://github.com/user-attachments/assets/e5773666-8825-4bf9-b802-657e5ed39cf3" /> ```python from datetime import timedelta from airflow.sdk import DAG from airflow.providers.standard.operators.python import PythonOperator from pendulum import today with DAG( dag_id="test_dag", schedule=None, dagrun_timeout=timedelta(seconds=5), start_date=today("UTC").add(days=-1) ): def something(arg_1, arg_2): import time if arg_2 == "titi": time.sleep(int(arg_1)) for i in ["tata", "tutu", "toto", "titi"]: PythonOperator.partial( task_id=i, python_callable=something, ).expand(op_args=[("10", i), ("5", i), ("4", i)]) ``` -- 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]
