I have a DAG that is scheduled once a month. my problem is that the scheduler is not kicking off the job:
args = {
'owner': 'Airflow',
'start_date': dates.days_ago(1),
'email': ['sinistersparrow1701@gmail.com', 'rich@offrs.com'],
'email_on_failure': True,
'email_on_success': True,
}
dag = models.DAG(
dag_id='Offrs_TAX_ASSESSOR_MASTER_Production',
default_args=args,
schedule_interval= '0 0 1 * *',
catchup=False
)
I tried 0 0 1 * * and I tried @Monthly. It is not firing. The DAG works perfectly when executed manually. Do I have something set wrong?
Thanks!