ashb commented on code in PR #47339:
URL: https://github.com/apache/airflow/pull/47339#discussion_r1987129862
##########
airflow/api_fastapi/core_api/routes/public/xcom.py:
##########
@@ -67,14 +68,17 @@ def get_xcom_entry(
raise HTTPException(
status.HTTP_400_BAD_REQUEST, "XCom deserialization is disabled
in configuration."
)
- query = select(XCom, XCom.value)
+ query = select(XComModel, XComModel.value)
Review Comment:
Why select the whole model and the individual column at the same time? That
seems a slightly odd way of doing things
--
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]