Skip to content

Commit

Permalink
fix oidc logout
Browse files Browse the repository at this point in the history
  • Loading branch information
vdiskg committed Apr 4, 2021
1 parent 3de1d72 commit 9d848f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class OidcLogoutHandler implements LogoutHandler {
@Override
public void logout(HttpServletRequest request, HttpServletResponse response) {
try {
response.sendRedirect("/logout");
response.sendRedirect(request.getContextPath() + "/logout");
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 9d848f3

Please sign in to comment.