rich7420 commented on code in PR #56813:
URL: https://github.com/apache/airflow/pull/56813#discussion_r2452138507
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/dag_versions.py:
##########
@@ -122,7 +122,7 @@ def get_dag_versions(
limit=limit,
session=session,
)
- dag_versions = session.scalars(dag_versions_select)
+ dag_versions = list(session.scalars(dag_versions_select))
Review Comment:
@jason810496 thanks for the feedback!
I've tried to remove all similar situation using list() and cast().
--
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]