nathadfield commented on issue #37154: URL: https://github.com/apache/airflow/issues/37154#issuecomment-2151744470
@JosephABC Thanks very much! I can now reproduce this but the reason why this is occurring is because you have got `depends_on_past: True` defined in `default_args`. ``` depends_on_past (bool) – when set to true, task instances will run sequentially while relying on the previous task’s schedule to succeed. The task instance for the start_date is allowed to run. ``` Setting this to False will result in the second DagRun starting as you expect. -- 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]
