You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/03/03 09:34:44 UTC

[airflow] 07/38: Correct PostgreSQL password in doc example code (#14256)

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

potiuk pushed a commit to branch v2-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit b25774859faac29de09d2c20f9ff2a5b83f0ba5b
Author: Kevin Trebing <Ke...@gmx.net>
AuthorDate: Tue Feb 16 17:54:14 2021 +0100

    Correct PostgreSQL password in doc example code (#14256)
    
    The example code block for PostgreSQL sets the password to the ``airflow_user`` instead of ``airflow_pass``.
    
    (cherry picked from commit 9ea0bc700c7974fafc6d98344eb59ee14c19bcd4)
---
 docs/apache-airflow/howto/set-up-database.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/howto/set-up-database.rst b/docs/apache-airflow/howto/set-up-database.rst
index 0d4f578..54657db 100644
--- a/docs/apache-airflow/howto/set-up-database.rst
+++ b/docs/apache-airflow/howto/set-up-database.rst
@@ -147,7 +147,7 @@ In the example below, a database ``airflow_db`` and user  with username ``airflo
 .. code-block:: sql
 
    CREATE DATABASE airflow_db;
-   CREATE USER airflow_user WITH PASSWORD 'airflow_user';
+   CREATE USER airflow_user WITH PASSWORD 'airflow_pass';
    GRANT ALL PRIVILEGES ON DATABASE airflow_db TO airflow_user;
 
 You may need to update your Postgres ``pg_hba.conf`` to add the