KEYCLOAK-8528 Change getRelativePath to include the servlet path followed by the path info
This commit is contained in:
parent
cbe59f03b7
commit
3be2c35561
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ public class JettyHttpFacade implements HttpFacade {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getRelativePath() {
|
public String getRelativePath() {
|
||||||
return request.getServletPath();
|
return request.getServletPath() + (request.getPathInfo() != null ? request.getPathInfo() : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue