GitHub user roel-w added a comment to the discussion: Catchup=True isn't scheduling any tasks
The issue was found. We had some default arguments and one of them was: "start_date": days_ago(1) This fights with the other start date that was manually defined: start_date=datetime(2024, 10, 1), This ment that it would define all the correct data intervals from it's manually defined start date datetime(2024, 10, 1) or last run date to catch up from the ones it has missed, but it didn't put any active tasks on it because it thinks it only needs to run the dags with the default: "start_date": days_ago(1) Removing this "start_date": days_ago(1) fixe the issue. We still got the correct data intervals and now the tasks also ran correctly. GitHub link: https://github.com/apache/airflow/discussions/46825#discussioncomment-12300617 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
