mirror of https://github.com/apache/lucene.git
SOLR-12988: Fix Revert
an (erroneous) assigment to useSsl was left in the constructor after the (intended) conditional assigment, rendering the conditional logic useless
(cherry picked from commit c8c2f2f25b
)
This commit is contained in:
parent
9e017ba83c
commit
456bc4dbf9
|
@ -105,7 +105,6 @@ public class SSLTestConfig {
|
|||
} else {
|
||||
this.useSsl = useSSL;
|
||||
}
|
||||
this.useSsl = useSSL;
|
||||
this.clientAuth = clientAuth;
|
||||
this.checkPeerName = checkPeerName;
|
||||
|
||||
|
|
Loading…
Reference in New Issue