RNHTTR commented on code in PR #34947:
URL: https://github.com/apache/airflow/pull/34947#discussion_r1364524936


##########
airflow/api_connexion/endpoints/dag_endpoint.py:
##########
@@ -66,6 +66,11 @@ def get_dag_details(*, dag_id: str) -> APIResponse:
     dag: DAG = get_airflow_app().dag_bag.get_dag(dag_id)
     if not dag:
         raise NotFound("DAG not found", detail=f"The DAG with dag_id: {dag_id} 
was not found")
+    dag_model: DagModel = DagModel.get_dagmodel(dag_id=dag_id)
+    for key, value in dag_model.__dict__.items():
+        if not key.startswith("_") and not hasattr(dag, key):
+            setattr(dag, key, value)

Review Comment:
   Would it make more sense to deepcopy the dag object?



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to