Skip to content

Commit 930f0f4

Browse files
committed
Merge branch 'capture-code-attributes-spring-webflux' of github.com:cuichenli/opentelemetry-java-instrumentation into capture-code-attributes-spring-webflux
2 parents 3810623 + c1a5638 commit 930f0f4

File tree

1 file changed

+1
-1
lines changed
  • instrumentation/spring/spring-webflux/spring-webflux-5.0/javaagent/src/test/java/io/opentelemetry/javaagent/instrumentation/spring/webflux/v5_0/server

1 file changed

+1
-1
lines changed

instrumentation/spring/spring-webflux/spring-webflux-5.0/javaagent/src/test/java/io/opentelemetry/javaagent/instrumentation/spring/webflux/v5_0/server/SpringWebfluxTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ void basicPostTest() {
503503
.hasParent(trace.getSpan(0))
504504
.hasAttributesSatisfyingExactly(
505505
equalTo(CODE_FUNCTION, "handle"),
506-
equalTo(CODE_NAMESPACE, "server.EchoHandlerFunction")),
506+
equalTo(CODE_NAMESPACE, EchoHandlerFunction.class.getName())),
507507
span ->
508508
span.hasName("echo").hasParent(trace.getSpan(1)).hasTotalAttributeCount(0)));
509509
}

0 commit comments

Comments
 (0)