You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/11/26 13:37:21 UTC

[GitHub] [airflow] CSammy commented on issue #19743: `catchup=False` doesn't stop airflow from backfilling if executed using the DebugExecutor

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: commits-unsubscribe@airflow.apache.org

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