-
Notifications
You must be signed in to change notification settings - Fork 37
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
Support ClientEndpointConfig#getSSLContext #767
Conversation
Signed-off-by: jansupol <[email protected]>
Signed-off-by: jansupol <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
I'm facing an issue with this change, is there any reason you removed these lines ? (containers/grizzly-client/src/main/java/org/glassfish/tyrus/container/grizzly/client/GrizzlyClientSocket.java#758-761) if (configuratorObject instanceof SslEngineConfigurator) {
return new ExtendedSSLEngineConfigurator((SslEngineConfigurator) configuratorObject, uri.getHost());
} |
@NilsRenaud The change is only in EE10 branch. If you are using the EE10 branch, could your issue be caused by missing EE10 dependencies? Tyrus 1.19 (EE8), 2.0.4 (EE9) still contain the condition duplicated. |
Nop that's not duplicated line, the first line is The second one allowed us to disable TLS hostname verification. |
oops, you are right. That needs to be fixed. |
I've created an issue to track the fix : #804 :) |
@jansupol 2.1.2 containing the fix is public now. |
Thanks a lot @jansupol ! |
Signed-off-by: jansupol [email protected]