tirkarthi commented on issue #56128: URL: https://github.com/apache/airflow/issues/56128#issuecomment-3341301738
Airflow updates the parameter names which match with context keys in this case `start_date` with default value of None in signature. Similar logic is present in 2.11.0 tag too so I am wondering how it got parsed in Airflow 2.11 but broke in Airflow 3. As a workaround you can use `_start_date` so that the name doesn't collide with context keys. https://github.com/apache/airflow/blob/d9ed7b94d033dc61ee1c05aafb9f1c1f7b82cfb2/airflow/decorators/base.py#L223-L243 cc: @kaxil -- 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]
