KEYCLOAK-12638 Remove Request parameters from exception message
This commit is contained in:
parent
e5935d8069
commit
62c9e15776
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ public class HttpMethod<R> {
|
|||
} catch (HttpResponseException e) {
|
||||
throw e;
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException("Error executing http method [" + builder + "]. Response : " + String.valueOf(bytes), e);
|
||||
throw new RuntimeException("Error executing http method [" + builder.getMethod() + "]. Response : " + String.valueOf(bytes), e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue