Skip to content

Commit

Permalink
Fix typo for store_serialized_dags config (#7952)
Browse files Browse the repository at this point in the history
(cherry picked from commit dd96d20)
  • Loading branch information
kaxil committed Apr 1, 2020
1 parent b0bc9cb commit e14c82e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airflow/config_templates/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@
default: "0"
- name: store_serialized_dags
description: |
Whether to serialises DAGs and persist them in DB.
Whether to serialise DAGs and persist them in DB.
If set to True, Webserver reads from DB instead of parsing DAG files
More details: https://airflow.apache.org/docs/stable/dag-serialization.html
version_added: 1.10.7
Expand Down
2 changes: 1 addition & 1 deletion airflow/config_templates/default_airflow.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ dag_discovery_safe_mode = True
# The number of retries each task is going to have by default. Can be overridden at dag or task level.
default_task_retries = 0

# Whether to serialises DAGs and persist them in DB.
# Whether to serialise DAGs and persist them in DB.
# If set to True, Webserver reads from DB instead of parsing DAG files
# More details: https://airflow.apache.org/docs/stable/dag-serialization.html
store_serialized_dags = False
Expand Down
2 changes: 1 addition & 1 deletion docs/dag-serialization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Add the following settings in ``airflow.cfg``:
store_serialized_dags = True
min_serialized_dag_update_interval = 30
* ``store_serialized_dags``: This flag decides whether to serialises DAGs and persist them in DB.
* ``store_serialized_dags``: This flag decides whether to serialise DAGs and persist them in DB.
If set to True, Webserver reads from DB instead of parsing DAG files
* ``min_serialized_dag_update_interval``: This flag sets the minimum interval (in seconds) after which
the serialized DAG in DB should be updated. This helps in reducing database write rate.
Expand Down

0 comments on commit e14c82e

Please sign in to comment.