You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by xd...@apache.org on 2022/10/02 06:45:00 UTC

[airflow] branch main updated: Documentation fixes (#26819)

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

xddeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 69da98cdb1 Documentation fixes (#26819)
69da98cdb1 is described below

commit 69da98cdb194de3544368b6bd7c47dcc7ace8814
Author: Karthikeyan Singaravelan <ti...@gmail.com>
AuthorDate: Sun Oct 2 12:14:45 2022 +0530

    Documentation fixes (#26819)
---
 RELEASE_NOTES.rst         | 2 +-
 airflow/cli/cli_parser.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst
index ed9c2a58ab..c97e639cee 100644
--- a/RELEASE_NOTES.rst
+++ b/RELEASE_NOTES.rst
@@ -895,7 +895,7 @@ Details in the `SQLAlchemy Changelog <https://docs.sqlalchemy.org/en/14/changelo
 ``auth_backends`` replaces ``auth_backend`` configuration setting (#21472)
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 
-Previously, only one backend was used to authorize use of the REST API. In 2.3 this was changed to support multiple backends, separated by whitespace. Each will be tried in turn until a successful response is returned.
+Previously, only one backend was used to authorize use of the REST API. In 2.3 this was changed to support multiple backends, separated by comma. Each will be tried in turn until a successful response is returned.
 
 This setting is also used for the deprecated experimental API, which only uses the first option even if multiple are given.
 
diff --git a/airflow/cli/cli_parser.py b/airflow/cli/cli_parser.py
index 951dc72999..7683b8af93 100644
--- a/airflow/cli/cli_parser.py
+++ b/airflow/cli/cli_parser.py
@@ -577,7 +577,7 @@ ARG_DB_FROM_REVISION = Arg(
 ARG_DB_SQL_ONLY = Arg(
     ("-s", "--show-sql-only"),
     help="Don't actually run migrations; just print out sql scripts for offline migration. "
-    "Required if using either `--from-version` or `--from-version`.",
+    "Required if using either `--from-revision` or `--from-version`.",
     action="store_true",
     default=False,
 )