ashb commented on code in PR #46719:
URL: https://github.com/apache/airflow/pull/46719#discussion_r1954358168
##########
airflow/api_fastapi/execution_api/routes/xcoms.py:
##########
@@ -147,7 +147,7 @@ def get_xcom(
)
try:
- xcom_value = BaseXCom.orm_deserialize_value(result)
+ BaseXCom.orm_deserialize_value(result)
Review Comment:
SDK client pretty much has to deal with xcom deser errors, because a custom
xcom backend could just as easily return something invalid. (And it should
always be the job of a client to validate what it's given, it should not trust
a third party to send it valid data.)
--
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]