Skip to content

Commit 7269a0e

Browse files
committed
supports minimum 6.0 version
1 parent 99a4c21 commit 7269a0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

instrumentation/activej-http-6.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/activejhttp/ActivejHttpServerConnectionInstrumentationModule.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public List<TypeInstrumentation> typeInstrumentations() {
2828

2929
@Override
3030
public ElementMatcher.Junction<ClassLoader> classLoaderMatcher() {
31-
return hasClassesNamed("io.activej.reactor.schedule.ScheduledPriorityQueue");
31+
// class which was added in 6.0, the minimum version we support.
32+
return hasClassesNamed("io.activej.http.HttpServer");
3233
}
3334
}

0 commit comments

Comments
 (0)