We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf4096e commit efe9896Copy full SHA for efe9896
operator/src/main/java/oracle/kubernetes/operator/rest/BaseDebugLoggingFilter.java
@@ -47,7 +47,7 @@ protected String getLoggableHeaders(ContainerRequestContext req) {
47
48
// Make a copy of all of the request headers
49
MultivaluedHashMap<String,String> loggableHeaders =
50
- new MultivaluedHashMap<>(req.getHeaders());
+ new MultivaluedHashMap<String, String>(req.getHeaders());
51
52
// Authorization headers contain credentials. These credentials should not be
53
// debug logged since they contain sensitive data.
0 commit comments