Skip to content

Commit

Permalink
Include rxjava2 instrumentation for vertx reactive tests (#3668)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit authored Jul 26, 2021
1 parent 4db7bd5 commit c3d26f9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ dependencies {

testInstrumentation(project(":instrumentation:jdbc:javaagent"))
testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))
testInstrumentation(project(":instrumentation:rxjava:rxjava-2.0:javaagent"))
testInstrumentation(project(":instrumentation:vertx-http-client-3.0:javaagent"))
testInstrumentation(project(":instrumentation:vertx-web-3.0:javaagent"))
//TODO we should include rjxava2 instrumentation here as well

testLibrary("io.vertx:vertx-web-client:${vertxVersion}")
testLibrary("io.vertx:vertx-jdbc-client:${vertxVersion}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,4 @@ class VertxRxCircuitBreakerWebClientTest extends HttpClientTest<HttpRequest<?>>
SingleConnection createSingleConnection(String host, int port) {
return new VertxRxCircuitBreakerSingleConnection(host, port, breaker)
}

@Override
boolean testCallbackWithParent() {
//Make rxjava2 instrumentation work with vert.x reactive in order to fix this test
return false
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,4 @@ class VertxRxWebClientTest extends HttpClientTest<HttpRequest<Buffer>> implement
SingleConnection createSingleConnection(String host, int port) {
return new VertxRxSingleConnection(host, port)
}

@Override
boolean testCallbackWithParent() {
//Make rxjava2 instrumentation work with vert.x reactive in order to fix this test
return false
}
}

0 comments on commit c3d26f9

Please sign in to comment.