You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/07/20 23:21:40 UTC

[lucene-solr] branch reference_impl updated: @259 - Get rid of any ssl test init.

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

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


The following commit(s) were added to refs/heads/reference_impl by this push:
     new d6caa33  @259 - Get rid of any ssl test init.
d6caa33 is described below

commit d6caa33cbbeb977aff727d228dd2e2de1b38ba95
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Mon Jul 20 18:21:25 2020 -0500

    @259 - Get rid of any ssl test init.
---
 .../test-framework/src/java/org/apache/solr/util/SSLTestConfig.java | 6 +++++-
 1 file changed, 5 insertions(+), 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 db9f0ca..278c372 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
@@ -70,7 +70,11 @@ public class SSLTestConfig {
   
   /** Creates an SSLTestConfig that does not use SSL or client authentication */
   public SSLTestConfig() {
-    this(false, false);
+    this.useSsl = false;
+    this.clientAuth = false;
+    this.checkPeerName = false;
+    keyStore = null;
+    trustStore = null;
   }
   
   /**