Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ private static void installBytebuddyAgent(
.with(new RedefinitionDiscoveryStrategy())
.with(AgentBuilder.DescriptionStrategy.Default.POOL_ONLY)
.with(AgentTooling.poolStrategy())
.with(new ClassLoadListener())
.with(AgentTooling.transformListener())
.with(AgentTooling.locationStrategy());
if (JavaModule.isSupported()) {
Expand Down Expand Up @@ -172,6 +171,7 @@ private static void installBytebuddyAgent(
agentListener.beforeAgent(autoConfiguredSdk);
}

agentBuilder = agentBuilder.with(new ClassLoadListener());
agentBuilder = configureIgnoredTypes(sdkConfig, extensionClassLoader, agentBuilder);

int numberOfLoadedExtensions = 0;
Expand Down
Loading