Replies: 1 comment 1 reply
|
This should be expected. The class Please check if it's a non-fatal exception and a warning like "Conscrypt isn't available. Using JDK default security provider." present. If so, then it's no more than a fallback warning. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Search before asking
Version
2.11.0
Minimal reproduce step
add the pulsar-client-all-2.11.0.jar as a dependency, try to create an admin client
What did you expect to see?
no warnings or a warning that reports a legitimate reason for conscrypt to be unavailable
What did you see instead?
Anything else?
I think the issue stems from shading the conscrypt jar in the pulsar-client-all jar.
The Conscrypt class is relocated under org.apache.pulsar.shade.io.netty.handler.ssl but the SecurityUtility class continues to look for
org.conscrypt.Conscryptwhich isn't foundthe following Junit5 test exhibits the issue
yields
Are you willing to submit a PR?
All reactions