[jira] [Created] (IGNITE-6165) Use SSL connection in IpcClientTcpEndpoint when it's configured for grid

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (IGNITE-6165) Use SSL connection in IpcClientTcpEndpoint when it's configured for grid

Anton Vinogradov (Jira)
Dmitry Karachentsev created IGNITE-6165:
-------------------------------------------

             Summary: Use SSL connection in IpcClientTcpEndpoint when it's configured for grid
                 Key: IGNITE-6165
                 URL: https://issues.apache.org/jira/browse/IGNITE-6165
             Project: Ignite
          Issue Type: Improvement
          Components: igfs
    Affects Versions: 2.1
            Reporter: Dmitry Karachentsev
             Fix For: 2.2


HadoopIgfsIpcIo in start() method always opens insecure connection, even if SSL is configured (should be like in TcpDiscoverySpi.createSocket()), IpcServerTcpEndpoint must be protected as well.

{code}
    if (isSslEnabled())
        sock = sslSockFactory.createSocket();
    else
        sock = new Socket();
{code}




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)