fix:add debugging endpoint for auth issues
All checks were successful
CI / backend-tests (push) Successful in 30s
CI / frontend-tests (push) Successful in 28s

This commit is contained in:
2026-03-22 12:15:25 +01:00
parent c9b09b8250
commit d8fec0e5d7
2 changed files with 48 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ def _verify_jwt(token: str) -> dict | None:
except PyJWKSetError as e:
logger.warning("JWKS set error: %s", e)
else:
logger.debug("No JWKS client available (SUPABASE_URL not set?)")
logger.warning("No JWKS client available (SUPABASE_URL not set?)")
return _verify_jwt_hs256(token)