Skip to content

Commit

Permalink
Exclude Http1xTest#testPipeliningOrder that does not pass with IO_Uring
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Feb 21, 2024
1 parent 9099197 commit d2acb7a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/java/io/vertx/core/http/Http1xTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import io.vertx.core.impl.ContextInternal;
import io.vertx.core.impl.Utils;
import io.vertx.core.impl.VertxInternal;
import io.vertx.core.impl.transports.JDKTransport;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.JsonObject;
import io.vertx.core.net.*;
Expand Down Expand Up @@ -999,6 +1000,8 @@ public void testCloseHandlerNotCalledWhenConnectionClosedAfterEnd() throws Excep

@Test
public void testPipeliningOrder() throws Exception {
// Does not pass with IO_Uring
Assume.assumeTrue(((VertxInternal)vertx).transport().getClass().getName().startsWith("io.vertx.core"));
client.close();
client = vertx.createHttpClient(createBaseClientOptions().setKeepAlive(true).setPipelining(true), new PoolOptions().setHttp1MaxSize(1));
int requests = 100;
Expand Down

0 comments on commit d2acb7a

Please sign in to comment.