Skip to content

Commit

Permalink
Documentation fixes (#26819)
Browse files Browse the repository at this point in the history
(cherry picked from commit 69da98c)
  • Loading branch information
tirkarthi authored and ephraimbuddy committed Oct 18, 2022
1 parent 9bcf5b3 commit bcfa418
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.rst
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion airflow/cli/cli_parser.py
Expand Up @@ -577,7 +577,7 @@ def string_lower_type(val):
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,
)
Expand Down

0 comments on commit bcfa418

Please sign in to comment.