-
Notifications
You must be signed in to change notification settings - Fork 893
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
Kotlin Coroutines instrumentation fails if jdk.unsupported
module is not available
#4100
Labels
enhancement
New feature or request
Comments
Testing with bytebuddy 1.11.15, same error:
|
Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem? Please describe.
The current version of
opentelemetry-java-instrumentation
(1.5.3 as of this report) requires thejdk.unsupported
JDK module to be available at runtime.If
jdk.unsupported
is not present, the following error occurs:Describe the solution you'd like
I would like to be able to run
opentelemetry-java-instrumentation
with a custom built JDK that does NOT includejdk.unsupported
.Describe alternatives you've considered
I'm currenlty adding
jdk.unsupported
in myjlink
command, but I need to have a plan to remove those eventually.opentelemetry-java-instrumentation
is the most important dependency in my classpath that requiresjdk.unsupported
.The text was updated successfully, but these errors were encountered: