Skip to content

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

@wisesky0

Description

@wisesky0

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 지원은 언제를 예정하고 계신가요?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions