This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 882bf0f13f4 [v3-1-test] Fix duplicate mention of 'Dags' and 'tasks' in
overview.rst (#57524) (#57793)
882bf0f13f4 is described below
commit 882bf0f13f415a651c88f53f46cb1848f2dcf3a1
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Nov 4 14:57:18 2025 +0200
[v3-1-test] Fix duplicate mention of 'Dags' and 'tasks' in overview.rst
(#57524) (#57793)
Removed duplicate mention of 'Dags' and 'tasks' in the overview.
(cherry picked from commit 1e2e9e9a87b728d2af349cb7c3d1bd94465f618b)
Co-authored-by: Pannawat
<[email protected]>
---
airflow-core/docs/core-concepts/overview.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/airflow-core/docs/core-concepts/overview.rst
b/airflow-core/docs/core-concepts/overview.rst
index f2d4b44e07f..dc51476a263 100644
--- a/airflow-core/docs/core-concepts/overview.rst
+++ b/airflow-core/docs/core-concepts/overview.rst
@@ -59,8 +59,8 @@ A minimal Airflow installation consists of the following
components:
* A folder of *Dag files*, which is read by the *scheduler* to figure out what
tasks to run and when to
run them.
-* A *metadata database*, usually PostgreSQL or MySQL, which stores the state
of tasks, Dags, variables,
- Dags and tasks.
+* A *metadata database*, usually PostgreSQL or MySQL, which stores the state
of tasks, Dags and variables.
+
Setting up a metadata database is described in :doc:`/howto/set-up-database`
and is required for
Airflow to work.