Pierre De Rop

Results 15 issues of Pierre De Rop

Hi; I'm having (for example) the following interface: ``` java public static class Printer { public void print(T t) { ... } } ``` Now, let's define a method reference...

Bug

The HttpMetricsHandlerTests testServerConnectionsMicrometer is still unstable. Sometimes, the following assertion fails because the SERVER_CONNECTIONS_TOTAL is 1, [see this failing assertion](https://github.com/reactor/reactor-netty/blob/1.0.x/reactor-netty-http/src/test/java/reactor/netty/http/HttpMetricsHandlerTests.java#L626) Reproduced the problem in github using netty5 branch while validating...

type/bug

Related to #2221 This PR is an attempt to reintegrate the Multipart feature into netty5 branch using new netty-contrib multipart codec. The old multipart code that has bee reintegrated comes...

type/enhancement

This test is flaky and it is observed that it fails from time to time on the CI fo version 2.0.x Observed error: ``` HttpProtocolsTests > testAccessLog(HttpServer, HttpClient) > reactor.netty.http.HttpProtocolsTests.testAccessLog(HttpServer,...

type/enhancement

This test is flaky and it is observed that it fails from time to time on the CI for versions 2.0.x Observed exception: ``` HttpClientTest > testIssue1478() FAILED java.lang.AssertionError: expectation...

type/enhancement

This draft PR experiments the concurrent pools feature (work in progress) from https://github.com/reactor/reactor-pool/pull/179 applied to Reactor Netty HTTP/2 Connection Pool. For the moment, `workStealing` mode can only be configured for...

type/enhancement

The PR #2937 that has been merged into the netty5 branch is not operational (only in netty5 branch). It needs to be completed with another PR, and for the moment,...

type/enhancement

## Expected Behavior Be able to run some Gatling HTTP/2 bench using reactor netty 2 and netty 5. ## Actual Behavior HTTP/2 gatling benchmarks are failing with errors like this:...

type/bug

This PR attempts to migrate Reactor Core reference documentation to Antora, and includes the following logical commits: - a482fbbd007eb2f96fe1748e355acb40ae5f6f63: Moved asciidoc file paths so they are compliant with Antora structure:...

type/documentation

This PR introduces a new feature for the Reactor Pool, aimed at preventing resource starvation in highly concurrent scenarios. Currently, when multiple threads simultaneously acquire and release resources, the SimpleDequeuePool's...

type/enhancement