Skip to content

Commit

Permalink
Reverts workaround for case-insensitive headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Oct 11, 2024
1 parent 508ffeb commit cf5171b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ public int getOrder() {
@Override
public HttpHeaders filter(HttpHeaders input, ServerWebExchange exchange) {
ServerHttpRequest request = exchange.getRequest();
HttpHeaders original = new HttpHeaders();
original.putAll(input);
HttpHeaders original = input;
HttpHeaders updated = new HttpHeaders();

// copy all headers except Forwarded
Expand Down

0 comments on commit cf5171b

Please sign in to comment.