KEYCLOAK-8528 Change getRelativePath to include the servlet path followed by the path info

This commit is contained in:
Stefan Guilhen 2018-11-06 01:08:45 -02:00 committed by Marek Posolda
parent cbe59f03b7
commit 3be2c35561

View file

@ -85,7 +85,7 @@ public class JettyHttpFacade implements HttpFacade {
@Override
public String getRelativePath() {
return request.getServletPath();
return request.getServletPath() + (request.getPathInfo() != null ? request.getPathInfo() : "");
}
@Override