feat: ignore Byteman classes (#12914)

This commit is contained in:
Ivan Fernandez Calvo 2024-12-18 20:03:45 +01:00 committed by GitHub
parent fce304c253
commit 47ada968e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,8 @@ public class GlobalIgnoredTypesConfigurer implements IgnoredTypesConfigurer {
.ignoreClass("com.nr.agent.")
.ignoreClass("com.singularity.")
.ignoreClass("com.jinspired.")
.ignoreClass("org.jinspired.");
.ignoreClass("org.jinspired.")
.ignoreClass("org.jboss.byteman.");
// allow JDK HttpClient
builder.allowClass("jdk.internal.net.http.");