This is an automated email from the ASF dual-hosted git repository.
vincbeck 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 02e2514162f Fix Typo caused by #49721 (#49736)
02e2514162f is described below
commit 02e2514162f8bae21c21252ff92eec788a52ae27
Author: Dheeraj Turaga <[email protected]>
AuthorDate: Thu Apr 24 11:18:54 2025 -0500
Fix Typo caused by #49721 (#49736)
---
airflow-core/docs/core-concepts/auth-manager/index.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/docs/core-concepts/auth-manager/index.rst
b/airflow-core/docs/core-concepts/auth-manager/index.rst
index 365295296eb..95cd05aae4f 100644
--- a/airflow-core/docs/core-concepts/auth-manager/index.rst
+++ b/airflow-core/docs/core-concepts/auth-manager/index.rst
@@ -148,7 +148,7 @@ delete the cookie.
response = RedirectResponse(url="/")
- secure = bool(conf.get("api", "ssl_cert", fallack=""))
+ secure = bool(conf.get("api", "ssl_cert", fallback=""))
response.set_cookie(COOKIE_NAME_JWT_TOKEN, token, secure=secure)
return response