Replace removed context-related operators

Closes gh-11194
This commit is contained in:
Marcus Da Coregio
2022-05-10 14:50:19 -03:00
parent b803e845e7
commit 806e05855c
45 changed files with 194 additions and 204 deletions

View File

@@ -3236,7 +3236,7 @@ public class ServerHttpSecurity {
@Override
public Mono<Void> filter(ServerWebExchange exchange, WebFilterChain chain) {
return chain.filter(exchange).subscriberContext(Context.of(ServerWebExchange.class, exchange));
return chain.filter(exchange).contextWrite(Context.of(ServerWebExchange.class, exchange));
}
}