This is an automated email from the ASF dual-hosted git repository. dimberman pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit eb565b80388daacfb3cb5f6f6db6936b7e5f463e Author: Kaxil Naik <[email protected]> AuthorDate: Wed Aug 26 19:04:33 2020 +0100 Fix typo in Custom XCom backend (#10588) (cherry picked from commit 2fc961458ede6a0b40798b36878f75e3aee1fcb3) --- docs/concepts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts.rst b/docs/concepts.rst index 1412268..a80ce4a 100644 --- a/docs/concepts.rst +++ b/docs/concepts.rst @@ -663,7 +663,7 @@ for inter-task communication rather than global settings. Custom XCom backend ''''''''''''''''''' -It is possible to change ``XCom`` behaviour os serialization and deserialization of tasks' result. +It is possible to change ``XCom`` behaviour of serialization and deserialization of tasks' result. To do this one have to change ``xcom_backend`` parameter in Airflow config. Provided value should point to a class that is subclass of :class:`~airflow.models.xcom.BaseXCom`. To alter the serialaization / deserialization mechanism the custom class should override ``serialize_value`` and ``deserialize_value``
