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
Quarkus REST - Be more permissive when adding headers
The JAX-RS API is very loose and allows adding Object and in some cases
we actually add a List to the headers and we need to take this into
account.
While I'm usually not for handling things this way, the API is not
enforcing things properly so I think we really need to handle this
ourself.
Fixes#47507
Copy file name to clipboardExpand all lines: independent-projects/resteasy-reactive/common/runtime/src/main/java/org/jboss/resteasy/reactive/common/jaxrs/AbstractResponseBuilder.java
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -277,11 +277,16 @@ public Response.ResponseBuilder cacheControl(CacheControl cacheControl) {
0 commit comments