ashb commented on code in PR #48440:
URL: https://github.com/apache/airflow/pull/48440#discussion_r2017044555
##########
airflow-core/src/airflow/api_fastapi/execution_api/routes/xcoms.py:
##########
@@ -131,12 +131,22 @@ def get_xcom(
run_id: str,
task_id: str,
key: str,
- xcom_query: Annotated[Select, Depends(xcom_query)],
+ session: SessionDep,
map_index: Annotated[int, Query()] = -1,
+ include_prior_dates: Annotated[bool, Query()] = False,
Review Comment:
I think this is a good excuse to exercise our API versioning "muscles", but
since this has a default and the behaviour hasn't changed, we could actually do
nothing versioning wise here and that would automatically change it to all
previous versions.
--
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]