I have two main applications(say App1, App2) sitting in different physical boxes. Each having their own microservices on their respective boxes. Now I am making a call from App1 to an API belonging to one of the microservices present for App2 on the other box. It is a POST API which takes File and some other data as input. I am randomly facing the following issue
SSL_write:: shutdown while in init
Although if the two Apps are present in the same box this issue is never faced.
The OpenSSL version is
OpenSSL 1.0.2k-fips
And the Call that I am making is through
Faraday Gem (0.9.1)
App1 is built on
Ruby 1.8.7 with Rails 2.3.2
This site tells that this is a bug on OpenSSL which was introduced with version 1.0.2b and is solved on 1.0.2n. Although I am on 6 and I do not have the 1.0.2n version available for update on it. The highest version available is 1.0.2k.
Is there any way that I can upgrade it, or is there any other way In which I can solve this issue.