You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ho...@apache.org on 2019/06/20 23:05:27 UTC

[lucene-solr] branch master updated: SOLR-12988: Fix Revert

This is an automated email from the ASF dual-hosted git repository.

hossman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new c8c2f2f  SOLR-12988: Fix Revert
c8c2f2f is described below

commit c8c2f2f25b28da694fae88868b12347bc5a2393c
Author: Chris Hostetter <ho...@apache.org>
AuthorDate: Thu Jun 20 16:03:30 2019 -0700

    SOLR-12988: Fix Revert
    
    an (erroneous) assigment to useSsl was left in the constructor after the (intended) conditional assigment, rendering the conditional logic useless
---
 solr/test-framework/src/java/org/apache/solr/util/SSLTestConfig.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/solr/test-framework/src/java/org/apache/solr/util/SSLTestConfig.java b/solr/test-framework/src/java/org/apache/solr/util/SSLTestConfig.java
index fb21ef7..502df40 100644
--- a/solr/test-framework/src/java/org/apache/solr/util/SSLTestConfig.java
+++ b/solr/test-framework/src/java/org/apache/solr/util/SSLTestConfig.java
@@ -105,7 +105,6 @@ public class SSLTestConfig {
     } else {
       this.useSsl = useSSL;
     }
-    this.useSsl = useSSL;
     this.clientAuth = clientAuth;
     this.checkPeerName = checkPeerName;