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

xddeng 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 9ea0bc7  Correct PostgreSQL password in doc example code (#14256)
9ea0bc7 is described below

commit 9ea0bc700c7974fafc6d98344eb59ee14c19bcd4
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``.
---
 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