tirkarthi commented on issue #56128: URL: https://github.com/apache/airflow/issues/56128#issuecomment-3341910618
start_date is a context key but end_date is not. Internally Airflow replaces the context keys found in task decorator as keyword arguments with None as default value. So `start_date, end_date` is replaced as `start_date=None, end_date` which is invalid signature but `end_date, start_date` is replaced as `end_date, start_date=None` https://github.com/apache/airflow/blob/d4a6a998b81b7229142ea6b3005dae18f9be45df/airflow-core/src/airflow/utils/context.py#L75 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
