allscripts-unity-client
allscripts-unity-client copied to clipboard
OpenSSL::SSL::SSLError: SSL_connect
When I tested in the console a sample request with HttpClient library returns that error while using the Net::Http worked fine. Also I tried to pass client options ca_file
and cs_path
they didn't work.
As a workaround I had to do:
client.client_driver.connection.ssl_config.add_trust_ca("/usr/lib/ssl/certs/ca-certificates.crt")
which solved the issue but please consider either moving to native ruby Net::Http
or add the support for ca_file