Github user franz1981 commented on a diff in the pull request:

    https://github.com/apache/activemq-artemis/pull/1834#discussion_r165308928
  
    --- Diff: 
artemis-core-client/src/main/java/org/apache/activemq/artemis/core/remoting/impl/netty/NettyConnector.java
 ---
    @@ -530,48 +539,34 @@ public synchronized void start() {
                    if 
(System.getProperty(ACTIVEMQ_TRUSTSTORE_PASSWORD_PROP_NAME) != null) {
                       realTrustStorePassword = 
System.getProperty(ACTIVEMQ_TRUSTSTORE_PASSWORD_PROP_NAME);
                    }
    -               context = SSLSupport.createContext(realKeyStoreProvider, 
realKeyStorePath, realKeyStorePassword, realTrustStoreProvider, 
realTrustStorePath, realTrustStorePassword, trustAll, crlPath);
    +
                 }
              } catch (Exception e) {
                 close();
                 IllegalStateException ise = new IllegalStateException("Unable 
to create NettyConnector for " + host + ":" + port);
                 ise.initCause(e);
                 throw ise;
              }
    -      } else {
    -         context = null; // Unused
           }
     
    -      if (context != null && useServlet) {
    -         // TODO: Fix me
    -         //bootstrap.setOption("sslContext", context);
    -      }
    +      //if (context != null && useServlet) {
    --- End diff --
    
    If isn't needed anymore please remove it 


---

Reply via email to