sunank200 commented on code in PR #42404:
URL: https://github.com/apache/airflow/pull/42404#discussion_r1835985937
##########
airflow/api_connexion/schemas/dag_run_schema.py:
##########
@@ -109,9 +101,9 @@ def autogenerate(self, data, **kwargs):
@post_dump
def autofill(self, data, **kwargs):
- """Populate execution_date from logical_date for compatibility."""
+ """Populate logical_date from logical_date for compatibility."""
ret_data = {}
- data["execution_date"] = data["logical_date"]
+ data["logical_date"] = data["logical_date"]
Review Comment:
Removed it
--
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]