amoghrajesh commented on code in PR #52297: URL: https://github.com/apache/airflow/pull/52297#discussion_r2191697073
########## airflow-core/docs/core-concepts/xcoms.rst: ########## @@ -91,7 +92,10 @@ Custom XCom Backends The XCom system has interchangeable backends, and you can set which backend is being used via the ``xcom_backend`` configuration option. -If you want to implement your own backend, you should subclass :class:`~airflow.models.xcom.BaseXCom`, and override the ``serialize_value`` and ``deserialize_value`` methods. +If you want to implement your own backend, you should subclass :class:`~airflow.sdk.bases.xcom.BaseXCom`, and override the ``serialize_value`` and ``deserialize_value`` methods. + +The base class for custom XCom backends is now :class:`~airflow.sdk.execution_time.xcom.XCom` Review Comment: This isn't right. Its `BaseXCom` Either ways, why is this sentence needed? -- 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]
