amoghrajesh commented on code in PR #47339:
URL: https://github.com/apache/airflow/pull/47339#discussion_r1987119161
##########
task_sdk/src/airflow/sdk/execution_time/task_runner.py:
##########
@@ -357,6 +369,15 @@ def _xcom_push(ti: RuntimeTaskInstance, key: str, value:
Any, mapped_length: int
# consumers
from airflow.serialization.serde import serialize
+ if XCom:
+ XCom.set(
+ key=key,
+ value=value,
+ dag_id=ti.dag_id,
+ task_id=ti.task_id,
+ run_id=ti.run_id,
+ )
+ return
Review Comment:
I reworked this part, resolving this comment
--
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]