You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/resteasy-reactive/rest-servlet/runtime/src/main/java/io/quarkus/resteasy/reactive/server/servlet/runtime/ServletRequestContext.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -464,7 +464,7 @@ public String getResponseHeader(String name) {
464
464
@Override
465
465
publicvoidremoveResponseHeader(Stringname) {
466
466
// Servlet API does not support this functionality
467
-
thrownewUnsupportedOperationException();
467
+
log.debugf("Cannot remove header '%s' because the Servlet API does not support removing HTTP response headers");
0 commit comments