I have the following dag config:
with DAG(
dag_id='dag_example',
catchup=False,
start_date=datetime.datetime(2022, 5, 26),
schedule_interval='0 6,7,9,11,15,19,23 * * *',
max_active_runs=1,
default_args=default_args
)
I would like to know why my dag that is scheduled to run at 7 AM is running at 9 AM (next scheduled date...). I'm using airflow 2.1.2. When I was using airflow v1 the dag runs correclty.