ok2c edited a comment on issue #194: Switched to TLSv1.2 as default protocol if none provided URL: https://github.com/apache/httpcomponents-core/pull/194#issuecomment-602185649 @michael-o I ran a few tests and indeed the change has the opposite effect than expected. With `TLS` as default protocol the client hello with Java 13 looks like that ``` "ClientHello": { "client version" : "TLSv1.2", ... "supported_versions (43)": { "versions": [TLSv1.3, TLSv1.2, TLSv1.1, TLSv1] }, ... } ``` With `TLSv1.2` as default protocol the client hello looks like that ``` "ClientHello": { "client version" : "TLSv1.2", ... "supported_versions (43)": { "versions": [TLSv1.2, TLSv1.1, TLSv1] } ] ... } ``` It is obviously not the behavior we would want as default. @Hakky54 I am afraid I will have to revert the change.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
