This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch sbp
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
The following commit(s) were added to refs/heads/sbp by this push:
new 53788af7 Turn off basic authentication in ASFQuart
53788af7 is described below
commit 53788af7060e47be70ca397b8a5c44cb8f3bef17
Author: Sean B. Palmer <[email protected]>
AuthorDate: Tue Mar 24 19:28:10 2026 +0000
Turn off basic authentication in ASFQuart
---
atr/server.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/atr/server.py b/atr/server.py
index dd33a115..98c73b5b 100644
--- a/atr/server.py
+++ b/atr/server.py
@@ -144,7 +144,7 @@ def _app_create_base(app_config: type[config.AppConfig]) ->
base.QuartApp:
"""Create the base Quart application."""
if asfquart.construct is ...:
raise ValueError("asfquart.construct is not set")
- app = asfquart.construct(__name__,
token_file="secrets/generated/apptoken.txt")
+ app = asfquart.construct(__name__,
token_file="secrets/generated/apptoken.txt", basic_auth=False)
app.jinja_environment = template.SyncEnvironment
# ASFQuart sets secret_key from apptoken.txt, or generates a new one
# We must preserve this because from_object will overwrite it
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]