prabhusneha commented on code in PR #46398:
URL: https://github.com/apache/airflow/pull/46398#discussion_r1942978513


##########
airflow/api_connexion/schemas/dag_run_schema.py:
##########
@@ -88,7 +88,8 @@ def autogenerate(self, data, **kwargs):
         if "dag_run_id" not in data:
             try:
                 data["dag_run_id"] = DagRun.generate_run_id(
-                    DagRunType.MANUAL, timezone.parse(data["logical_date"])
+                    DagRunType.MANUAL,
+                    timezone.parse(data["logical_date"]),
                 )

Review Comment:
   Is this required here? as `run_after` was not added in this as part of the 
PR that added the new field run_after ( 
[#46195](https://github.com/apache/airflow/issues/46195)  ).
   I assumed this was going to be deprecated so wasn't added here. 



-- 
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]

Reply via email to