ashb commented on code in PR #58344:
URL: https://github.com/apache/airflow/pull/58344#discussion_r2532034570
##########
airflow-core/src/airflow/api_fastapi/execution_api/routes/xcoms.py:
##########
@@ -240,6 +247,8 @@ def get_mapped_xcom_by_slice(
params: Annotated[GetXComSliceFilterParams, Query()],
session: SessionDep,
) -> XComSequenceSliceResponse:
+ if key:
+ key = unquote(key)
Review Comment:
Do we really need the unqoute? I would have expected FastAPI to unquote it
before it gives it to us.
--
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]