Skip to content
Snippets Groups Projects

fixed ConfidentialClientApplication

Merged Martin Gargalovič requested to merge Confidential-Client-Fix into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -61,7 +61,7 @@ public class ConfidentialClientApplication {
try {
userRegisterRestTemplate.postForObject(url, createDto, UserCreateDto.class);
} catch (RestClientException e) {
throw new ServletException("Unable to register user" + System.getenv("DOCKER_RUNNING"), e);
throw new ServletException("Unable to register user", e);
}
}
super.onAuthenticationSuccess(req, res, auth);
Loading