Merge pull request #16424 from CERIT-SC/audit-fix

fix: Audit does not log user information
This commit is contained in:
Tim Jaeryang Baek 2025-08-10 13:43:09 +04:00 committed by GitHub
commit 25cc8049c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -195,7 +195,7 @@ class AuditLoggingMiddleware:
try:
user = get_current_user(
request, None, get_http_authorization_cred(auth_header)
request, None, None, get_http_authorization_cred(auth_header)
)
return user
except Exception as e: