Skip to content

Commit 5f1b77b

Browse files
author
sberberovic
committed
Add extra comment to made changes
1 parent 9c0d0c8 commit 5f1b77b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/eu/openanalytics/containerproxy/auth/impl/KeycloakAuthenticationBackend.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ public String getLogoutSuccessURL() {
126126
protected KeycloakAuthenticationProcessingFilter keycloakAuthenticationProcessingFilter() throws Exception {
127127
// Possible solution for issue #21037, create a custom RequestMatcher that doesn't include a QueryParamPresenceRequestMatcher(OAuth2Constants.ACCESS_TOKEN) request matcher.
128128
// The QueryParamPresenceRequestMatcher(OAuth2Constants.ACCESS_TOKEN) caused the HTTP requests to be changed before they where processed.
129-
// Because the HTTP requests are adapted before they are processed, the requested failed to complete successfully and caused an io.undertow.server.TruncatedResponseException
129+
// Because the HTTP requests are adapted before they are processed, the requested failed to complete successfully and caused an io.undertow.server.TruncatedResponseException
130+
// If in the future we need a RequestMatcher for het ACCESS_TOKEN, we can implement one ourself
130131
RequestMatcher requestMatcher =
131132
new OrRequestMatcher(
132133
new AntPathRequestMatcher(KeycloakAuthenticationProcessingFilter.DEFAULT_LOGIN_URL),

0 commit comments

Comments
 (0)