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 c8012cb5dd9a76850f23aa020ec51a036d739c58
Author: Kevin Trebing <[email protected]>
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

Reply via email to