You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After changing a certificate from AWS issued to LetsEncrypt for an API endpoint, we had the following error:
Error: Faraday::SSLError: Received fatal alert: handshake_failure
After updating everything I could and disabling verify mode:
Error: Faraday::TimeoutError: Net::ReadTimeout
Steps to reproduce
This doesn't use Faraday directly, but it's using the openssl library which is included
uri = URI.parse("https://mysite.net")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE // Attempt to stop this
request = Net::HTTP::Get.new(uri.request_uri)
response = http.request(request)
puts response
The text was updated successfully, but these errors were encountered:
Basic Info
The version of openssl used in jruby is causing problems when attempting connections with endpoints which use Letsencrypt
Fix is included in later version:
https://github.com/jruby/jruby-openssl/releases/tag/v0.11.0
Issue description
After changing a certificate from AWS issued to LetsEncrypt for an API endpoint, we had the following error:
Error: Faraday::SSLError: Received fatal alert: handshake_failure
After updating everything I could and disabling verify mode:
Error: Faraday::TimeoutError: Net::ReadTimeout
Steps to reproduce
This doesn't use Faraday directly, but it's using the openssl library which is included
The text was updated successfully, but these errors were encountered: