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:
wujun8 2019-11-13 19:32:53 +08:00 committed by 吴晟 Wu Sheng
parent e11d20715d
commit 424ec7efcf
1 changed files with 1 additions and 0 deletions

View File

@ -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()));