CSammy commented on issue #19743: URL: https://github.com/apache/airflow/issues/19743#issuecomment-979984290
I can confirm as well, using the official Helm chart with Docker tag `2.2.2-python3.9`. When setting a DAG to ```python schedule_interval="0 0 * * 6", start_date=datetime.datetime(2021, 11, 1), catchup=False, ``` and running it manually for the first time, it starts runs for 2021-11-13 and 2021-11-20. I would've expected it to start a single run for today. One possible workaround for the moment is to use ```python start_date=airflow.utils.dates.days_ago(1), ``` -- 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]
