Hi I have my DAG parameters structured as so
default_args = {
'owner': 'airflow',
'depends_on_past': False,
'start_date': datetime(2017, 9, 26),
'schedule_interval': "* * * * *",
'email': ['[email protected]'],
'email_on_failure': False,
'email_on_retry': False,
}
But I'm not seeing my Airflow scheduler scheduling these tasks a minute apart or anywhere at all. I have also consulted this question but it does not seem to be working as well. Am I missing something when constructing my DAG?