You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: instrumentation/internal/internal-class-loader/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/internal/classloader/BootDelegationInstrumentation.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,8 @@ public ElementMatcher<TypeDescription> typeMatcher() {
48
48
// just an optimization to exclude common class loaders that are known to delegate to the
49
49
// bootstrap loader (or happen to _be_ the bootstrap loader)
50
50
// The AgentClassLoader and InstrumentationModuleClassloaders are required to be excluded
51
-
// for the instrumentation to work properly. loadClass on those is invoked during Advice bootstrapping
51
+
// for the instrumentation to work properly. loadClass on those is invoked during Advice
52
+
// bootstrapping
52
53
// which therefore would cause an infinite recursion
0 commit comments