Hi all, I'm in the process of learning thrift. I wrote a secure client in C++ to connect to a thrift server, authenticated via SSL. First I wrote a single threaded application, which ran without any issues. But, when I try to send requests to the server concurrently with multiple threads, the program fails with the following exception:
* terminate called after throwing an instance of 'apache::thrift::transport::TSSLException' what(): SSL_read: wrong version number terminate called recursively* Kindly let me know what is the issue here, and how should I avoid it. -- Thanks and Regards, Isuru
