From afaf08dbee0b653929f590fcf51d31553238a6be Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 2 Sep 2025 13:30:03 +0800 Subject: [PATCH] bugfix --- rbac/check_perm.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rbac/check_perm.py b/rbac/check_perm.py index 10e82ed..d18ea5c 100644 --- a/rbac/check_perm.py +++ b/rbac/check_perm.py @@ -120,7 +120,6 @@ async def basic_auth(sor, request): async def getAuthenticationUserid(sor, request): auth = request.headers.get('Authorization') if auth is None: - debug(f'{request.headers=}, not Authorization') return None for h,f in registered_auth_methods.items(): if auth.startswith(h):