I'm new to Airflow.
My goal is to run a dag, on a daily basis, starting 1 hour from now.
I'm truly misunderstanding the airflow schedule "end-of-interval invoke" rules.
From the docs [(Airflow Docs)][1]
Note that if you run a DAG on a schedule_interval of one day, the run stamped 2016-01-01 will be trigger soon after 2016-01-01T23:59. In other words, the job instance is started once the period it covers has ended.
I set schedule_interval as followed:
schedule_interval="00 15 * * *"
and start_date as followed:
start_date=datetime(year=2019, month=8, day=7)
My assumption was, that if now it's 14:00:00 PM (UTC time) and the date today is 07-08-2019, then my dag will be executed exactly in one hour. However, my dag is not starting at all.