Having issues setting the start_date in Airflow / MWAA – Amazon web services
Problem: The start date of my DAG is not being set properly, can anyone tell me why? Here is sample code: default_args = { "owner": "hello", "email_on_failure": "false", "retries": 1, "retry_delay": timedelta(minutes=1), "start_date": datetime(2022, 7, 20), "catchup": True, "schedule_interval": "@weekly",…