I cannot understand how scheduler works, I created some dags with:
schedule_interval="0 21 * * *",
start_date=pendulum.datetime(2022, 5, 3, tz="UTC"),
catchup=False,
"max_active_runs": 1,
I activated the dag yesterday afternoon around 15.00 and I executed manually the dags to verify they works.
This morning I checked the dag execution and I saw the the dags have not been executed yesterday (2022-05-03 at 21.00) as expected (this is the next run date reported by airflow) why?
What am I wronging?
I am using airflow 2.2.4
Thanks