pierrejeambrun commented on code in PR #58344:
URL: https://github.com/apache/airflow/pull/58344#discussion_r2610124820
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/xcom.py:
##########
@@ -257,7 +257,7 @@ def create_xcom_entry(
)
try:
- value = json.dumps(request_body.value)
+ value = XComModel.serialize_value(request_body.value)
Review Comment:
I think there is a specific PR for that
(https://github.com/apache/airflow/pull/59129) to handle double serialization
problem. I recommend to not mix things up and not update anything not related
to 'xcom key handling with slash' to not make the scope bigger.
--
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]