Updated tests for framework changes
This commit is contained in:
@@ -92,7 +92,8 @@ public class ForwardedHeadersFilter implements HttpHeadersFilter, Ordered {
|
||||
@Override
|
||||
public HttpHeaders filter(HttpHeaders input, ServerWebExchange exchange) {
|
||||
ServerHttpRequest request = exchange.getRequest();
|
||||
HttpHeaders original = input;
|
||||
HttpHeaders original = new HttpHeaders();
|
||||
original.putAll(input);
|
||||
HttpHeaders updated = new HttpHeaders();
|
||||
|
||||
// copy all headers except Forwarded
|
||||
|
||||
Reference in New Issue
Block a user