This is my dag:
dag_pr_api = DAG(
dag_id='API-PERSONAL-COMPUTER',
default_args=args,
schedule_interval='30 07 * * *',
start_date=pendulum.yesterday('Europe/Berlin'),
catchup=False,
dagrun_timeout=timedelta(minutes=60),
tags=['ssh']
)
when I enabling the dag in airflow UI, it is getting triggered immediately. I have gone through several articles but i didnt understood the issue with start_date
can someone help?
I tried catchup=False
still issue didnt resolved
New contributor
maneesh arava is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.