Fix typo in Custom XCom backend (#10588)

This commit is contained in:
Kaxil Naik 2020-08-26 19:04:33 +01:00 коммит произвёл GitHub
Родитель 8349061f9c
Коммит 2fc961458e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -741,7 +741,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 serialization /
deserialization mechanism the custom class should override ``serialize_value`` and ``deserialize_value``