Skip to content

Commit 4a11baf

Browse files
committed
fix pebkc
1 parent d98dc33 commit 4a11baf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instrumentation/jaxrs/jaxrs-3.0/jaxrs-3.0-annotations/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/jaxrs/v3_0/DefaultRequestContextInstrumentation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public static AdviceScope createGenericSpan(
8989
}
9090
Class<?> filterClass =
9191
(Class<?>) requestContext.getProperty(JaxrsConstants.ABORT_FILTER_CLASS);
92-
if (filterClass != null) {
92+
if (filterClass == null) {
9393
return null;
9494
}
9595
Method method = null;

0 commit comments

Comments
 (0)