Cross test quarkus resteasy reactive with vertx-web instrumentation (#8998)
This commit is contained in:
parent
600c5873dd
commit
caa9b68855
|
@ -16,7 +16,7 @@ public final class OtelRequestContext {
|
|||
OtelRequestContext context = new OtelRequestContext();
|
||||
contextThreadLocal.set(context);
|
||||
ResteasyReactiveSpanName.INSTANCE.updateServerSpanName(
|
||||
requestContext, HttpRouteSource.CONTROLLER);
|
||||
requestContext, HttpRouteSource.NESTED_CONTROLLER);
|
||||
return context;
|
||||
}
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@ dependencies {
|
|||
|
||||
testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))
|
||||
testInstrumentation(project(":instrumentation:quarkus-resteasy-reactive:javaagent"))
|
||||
testInstrumentation(project(":instrumentation:vertx:vertx-web-3.0:javaagent"))
|
||||
|
||||
testImplementation(project(":instrumentation:quarkus-resteasy-reactive:common-testing"))
|
||||
testImplementation("io.quarkus:quarkus-junit5")
|
||||
|
|
|
@ -20,6 +20,7 @@ dependencies {
|
|||
|
||||
testInstrumentation(project(":instrumentation:netty:netty-4.1:javaagent"))
|
||||
testInstrumentation(project(":instrumentation:quarkus-resteasy-reactive:javaagent"))
|
||||
testInstrumentation(project(":instrumentation:vertx:vertx-web-3.0:javaagent"))
|
||||
|
||||
testImplementation(project(":instrumentation:quarkus-resteasy-reactive:common-testing"))
|
||||
testImplementation("io.quarkus:quarkus-junit5")
|
||||
|
|
Loading…
Reference in New Issue