Skip to content

Commit dc7e072

Browse files
authored
Fix testLatestDeps (#6791)
1 parent 6416a14 commit dc7e072

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

instrumentation/vertx/vertx-http-client/vertx-http-client-4.0/javaagent/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ dependencies {
1717
// vertx-codegen dependency is needed for Xlint's annotation checking
1818
library("io.vertx:vertx-codegen:4.0.0")
1919

20+
// concurrency tests are failing with 4.3.4
21+
// tracking at https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/6790
22+
latestDepTestLibrary("io.vertx:vertx-core:4.3.3")
23+
2024
implementation(project(":instrumentation:vertx:vertx-http-client:vertx-http-client-common:javaagent"))
2125

2226
testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))

instrumentation/vertx/vertx-rx-java-3.5/javaagent/build.gradle.kts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,11 @@ dependencies {
4646
add("version35TestImplementation", "io.vertx:vertx-jdbc-client:$vertxVersion")
4747
add("version35TestImplementation", "io.vertx:vertx-circuit-breaker:$vertxVersion")
4848

49-
add("latestDepTestImplementation", "io.vertx:vertx-web:4.+")
50-
add("latestDepTestImplementation", "io.vertx:vertx-rx-java2:4.+")
51-
add("latestDepTestImplementation", "io.vertx:vertx-web-client:4.+")
52-
add("latestDepTestImplementation", "io.vertx:vertx-jdbc-client:4.+")
53-
add("latestDepTestImplementation", "io.vertx:vertx-circuit-breaker:4.+")
49+
// concurrency tests are failing with 4.3.4
50+
// tracking at https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/6790
51+
add("latestDepTestImplementation", "io.vertx:vertx-web:4.3.3")
52+
add("latestDepTestImplementation", "io.vertx:vertx-rx-java2:4.3.3")
53+
add("latestDepTestImplementation", "io.vertx:vertx-web-client:4.3.3")
54+
add("latestDepTestImplementation", "io.vertx:vertx-jdbc-client:4.3.3")
55+
add("latestDepTestImplementation", "io.vertx:vertx-circuit-breaker:4.3.3")
5456
}

0 commit comments

Comments
 (0)