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:45 UTC

[airflow] 08/38: Fix misleading statement on sqlite (#14317)

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 fa61f6ea233627fcc5ed9b9ba0d33ac8d079abca
Author: Arun Kumar <pa...@users.noreply.github.com>
AuthorDate: Fri Feb 19 16:25:26 2021 +0530

    Fix misleading statement on sqlite (#14317)
    
    The statement
    ```
    By default, Airflow uses **SQLite**, which is *not* intended for development purposes only.
    ```
    is confusing. If `postgres/mysql` are production worthy db backends, and `sqlite` as default db for `airflow` is for development purposes only, this statement is not correct. If I'm mistaken and `sqlite` is for both `production` and `development` purposes, please ignore this PR
    
    (cherry picked from commit 0d366c1f297ec25b5f8e01c6d72a312e2ee64d4d)
---
 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 54657db..153ca80 100644
--- a/docs/apache-airflow/howto/set-up-database.rst
+++ b/docs/apache-airflow/howto/set-up-database.rst
@@ -28,7 +28,7 @@ Choosing database backend
 -------------------------
 
 If you want to take a real test drive of Airflow, you should consider setting up a database backend to **MySQL** and **PostgresSQL**.
-By default, Airflow uses **SQLite**, which is not intended for development purposes only.
+By default, Airflow uses **SQLite**, which is intended for development purposes only.
 
 Airflow supports the following database engine versions, so make sure which version you have. Old versions may not support all SQL statements.