Violeta Georgieva
Violeta Georgieva
@ricardkollcaku 1. In the reproducible example you are using `flatMap` ``` Flux.range(1, 100000000) .flatMap(integer -> webClient.get().retrieve().bodyToMono(String.class)) .subscribe() ; ``` While in the comment above you are specifying `concatMap` ``` Flux.range(1,...
@ricardkollcaku a fix is available in 1.0.20-SNAPSHOT. It will be great if you can test it.
Here is what we have in the specification ``` A server MUST read the entire request message body or close the connection after sending its response, since otherwise the remaining...
@copbint Can you describe your use case? Is it related only to event loop or reactive pipeline or may be tracing?
@copbint Would you like to take a look at this PR https://github.com/reactor/reactor-core/pull/2983 and provide us feedback. This will be really helpful!
All It would be very helpful if you can review the PRs listed below and provide feedback directly there. Thanks a lot! https://github.com/reactor/reactor-core/pull/2983 https://github.com/reactor/reactor-core/pull/3145 https://github.com/reactor/reactor-core/pull/3147
Check `channel.write` vs `channelContextHandler.write` http://normanmaurer.me/presentations/2014-facebook-eng-netty/slides.html#29.0 `ChannelOperationHandler` is not involved in the outbound operations anymore.
@shakuzen It will be backwards incompatible if we do that in 1.0.x as the current `ProxyProvider` needs `HttpHeaders` https://github.com/reactor/reactor-netty/blob/main/reactor-netty-core/src/main/java/reactor/netty/transport/ProxyProvider.java#L407-L417 I'm adding this to 2.0.x Backlog where we will be able...
@cea5 I'll check that
Such integration should be possible via https://projectreactor.io/docs/netty/release/api/reactor/netty/http/server/HttpServer.html#accessLog-boolean-reactor.netty.http.server.logging.AccessLogFactory- Marking this as `help wanted` if somebody wants to work on this.