ignore kryo ".reflectasm." class (#3845)
When using kryo, Byte-buddy occurs exception when match type. > java.lang.IllegalStateException: Cannot resolve type description for com.esotericsoftware.reflectasm.PublicConstructorAccess
This commit is contained in:
parent
e11d20715d
commit
424ec7efcf
|
|
@ -93,6 +93,7 @@ public class SkyWalkingAgent {
|
|||
.or(nameStartsWith("org.groovy."))
|
||||
.or(nameContains("javassist"))
|
||||
.or(nameContains(".asm."))
|
||||
.or(nameContains(".reflectasm."))
|
||||
.or(nameStartsWith("sun.reflect"))
|
||||
.or(allSkyWalkingAgentExcludeToolkit())
|
||||
.or(ElementMatchers.<TypeDescription>isSynthetic()));
|
||||
|
|
|
|||
Loading…
Reference in New Issue