Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: authz-keycloak add return detail err (#10682) #10691

Merged
merged 1 commit into from
Dec 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apisix/plugins/authz-keycloak.lua
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ local function evaluate_permissions(conf, ctx, token)
local sa_access_token, err = authz_keycloak_ensure_sa_access_token(conf)
if err then
log.error(err)
return 503
return 503, err
end

-- Resolve URI to resource(s).
Expand All @@ -569,7 +569,7 @@ local function evaluate_permissions(conf, ctx, token)
if permission == nil then
-- No result back from resource registration endpoint.
log.error(err)
return 503
return 503, err
end
else
-- Use statically configured permissions.
Expand Down
Loading