jedcunningham commented on code in PR #61273:
URL: https://github.com/apache/airflow/pull/61273#discussion_r2750647759


##########
airflow-core/src/airflow/api_fastapi/core_api/routes/ui/grid.py:
##########
@@ -191,10 +203,10 @@ def get_dag_structure(
                 .distinct()
             ),
         )
+        .execution_options(yield_per=5)
     )
-    merged_nodes: list[dict[str, Any]] = []
-    dags = [latest_dag]
-    for serdag in serdags:
+
+    for serdag in session.scalars(serdags_query):
         if serdag:

Review Comment:
   No. I was going to leave it, but I should clean it up while I'm in 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