Skip to content

scouter 2.20.0 버전 agent.batch 는 Java 20 을 지원하지 않습니다. #1022

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wisesky0 opened this issue Apr 2, 2025 · 0 comments

Comments

@wisesky0
Copy link

wisesky0 commented Apr 2, 2025

agent.java 의 scouter.org.objectweb.asm.ClassReader 를 확인하면, java 20 지원하지만,

    if (checkClassVersion && readShort(classFileOffset + 6) > 65)
      throw new IllegalArgumentException("Unsupported class file major version " + 
          readShort(classFileOffset + 6)); 

agent.batch 의 scouter.org.objectweb.asm.ClassReader 를 확인하면, java 11 까지만 지원하는 것으로 보입니다.

    if (checkClassVersion && readShort(classFileOffset + 6) > 56)
      throw new IllegalArgumentException("Unsupported class file major version " + 
          readShort(classFileOffset + 6)); 

agent.batch 의 java 20 지원은 언제를 예정하고 계신가요?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant