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
agent.java 의 scouter.org.objectweb.asm.ClassReader 를 확인하면, java 20 지원하지만,
if (checkClassVersion && readShort(classFileOffset + 6) > 65)
thrownewIllegalArgumentException("Unsupported class file major version " +
readShort(classFileOffset + 6));
agent.batch 의 scouter.org.objectweb.asm.ClassReader 를 확인하면, java 11 까지만 지원하는 것으로 보입니다.
if (checkClassVersion && readShort(classFileOffset + 6) > 56)
thrownewIllegalArgumentException("Unsupported class file major version " +
readShort(classFileOffset + 6));
agent.batch 의 java 20 지원은 언제를 예정하고 계신가요?
The text was updated successfully, but these errors were encountered:
agent.java 의 scouter.org.objectweb.asm.ClassReader 를 확인하면, java 20 지원하지만,
agent.batch 의 scouter.org.objectweb.asm.ClassReader 를 확인하면, java 11 까지만 지원하는 것으로 보입니다.
agent.batch 의 java 20 지원은 언제를 예정하고 계신가요?
The text was updated successfully, but these errors were encountered: