I have an Airflow Job which is running daily at the moment but I need to run it on alternate days. I want to know if this code will work correctly or if there is a better way to do it?
dag = DAG(
dag_name,
default_args=default_args,
dagrun_timeout=timedelta(hours=2),
schedule_interval=timedelta(hours=48)
)
