瀏覽代碼

Merge pull request #10148 from afishbeck/secureSocketCheckConnection

HPCC-17877 Fix Roxie SSL exception - check_connection not implemented

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 8 年之前
父節點
當前提交
d98d990b07
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      system/security/securesocket/securesocket.cpp

+ 1 - 1
system/security/securesocket/securesocket.cpp

@@ -377,7 +377,7 @@ public:
 
     virtual bool check_connection()
     {
-        throw MakeStringException(-1, "CSecureSocket::check_connection: not implemented");
+        return m_socket->check_connection();
     }
 
     virtual bool isSecure() const override