You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/03/11 13:33:50 UTC

[airflow] branch master updated: Fix typo in DAG Serialization doc (#14722)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new f2558cd  Fix typo in DAG Serialization doc (#14722)
f2558cd is described below

commit f2558cdd55ee4900c7f7f0c300354c742cd38d8c
Author: Alexander Zhukov <zh...@gmail.com>
AuthorDate: Thu Mar 11 15:33:29 2021 +0200

    Fix typo in DAG Serialization doc (#14722)
---
 docs/apache-airflow/dag-serialization.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/dag-serialization.rst b/docs/apache-airflow/dag-serialization.rst
index c883f8b..63a6425 100644
--- a/docs/apache-airflow/dag-serialization.rst
+++ b/docs/apache-airflow/dag-serialization.rst
@@ -33,7 +33,7 @@ need access to the DAG files. Both the scheduler and webserver parse the DAG fil
 With **DAG Serialization** we aim to decouple the webserver from DAG parsing
 which would make the Webserver very light-weight.
 
-As shown in the image above, when using the this feature,
+As shown in the image above, when using this feature,
 the :class:`~airflow.jobs.scheduler_job.DagFileProcessorProcess` in the Scheduler
 parses the DAG files, serializes them in JSON format and saves them in the Metadata DB
 as :class:`~airflow.models.serialized_dag.SerializedDagModel` model.