amoghrajesh commented on code in PR #58900:
URL: https://github.com/apache/airflow/pull/58900#discussion_r2588029846
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/xcom.py:
##########
@@ -335,6 +336,6 @@ def update_xcom_entry(
)
# Update XCom entry
- xcom_entry.value = XComModel.serialize_value(xcom_new_value)
+ xcom_entry.value = json.dumps(xcom_new_value)
Review Comment:
I created an issue and marked it as a good first issue to fix the API:
https://github.com/apache/airflow/issues/59032. This API has little use case
and can be handled without blocking serde effort
--
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]