ashb commented on code in PR #65162:
URL: https://github.com/apache/airflow/pull/65162#discussion_r3074414334
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/ui/grid.py:
##########
@@ -453,7 +453,7 @@ def get_node_summaries() -> Iterable[dict[str, Any]]:
)
def get_grid_ti_summaries_stream(
dag_id: str,
- session: SessionDep,
+ session: Annotated[Session, Depends(_get_session)],
Review Comment:
It's a bit "icky" to import `_get_session`, but since this is the only
occurrence of it now I figured it was better to live with this.
--
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]