You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2018/12/07 14:19:50 UTC

lucene-solr:master: SOLR-13046: Suppress SSL for StreamingTest

Repository: lucene-solr
Updated Branches:
  refs/heads/master b24af10d5 -> 17fca051c


SOLR-13046: Suppress SSL for StreamingTest


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/17fca051
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/17fca051
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/17fca051

Branch: refs/heads/master
Commit: 17fca051c56977a0fcc9ab79506dbdb89fce2722
Parents: b24af10
Author: Joel Bernstein <jb...@apache.org>
Authored: Fri Dec 7 09:19:40 2018 -0500
Committer: Joel Bernstein <jb...@apache.org>
Committed: Fri Dec 7 09:19:40 2018 -0500

----------------------------------------------------------------------
 .../test/org/apache/solr/client/solrj/io/stream/StreamingTest.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/17fca051/solr/solrj/src/test/org/apache/solr/client/solrj/io/stream/StreamingTest.java
----------------------------------------------------------------------
diff --git a/solr/solrj/src/test/org/apache/solr/client/solrj/io/stream/StreamingTest.java b/solr/solrj/src/test/org/apache/solr/client/solrj/io/stream/StreamingTest.java
index b43dc13..003f01b 100644
--- a/solr/solrj/src/test/org/apache/solr/client/solrj/io/stream/StreamingTest.java
+++ b/solr/solrj/src/test/org/apache/solr/client/solrj/io/stream/StreamingTest.java
@@ -28,6 +28,7 @@ import java.util.Map;
 import java.util.Set;
 
 import org.apache.lucene.util.LuceneTestCase;
+import org.apache.solr.SolrTestCaseJ4;
 import org.apache.solr.client.solrj.SolrServerException;
 import org.apache.solr.client.solrj.embedded.JettySolrRunner;
 import org.apache.solr.client.solrj.io.SolrClientCache;
@@ -62,6 +63,7 @@ import org.junit.Test;
 *
 **/
 
+@SolrTestCaseJ4.SuppressSSL
 @LuceneTestCase.SuppressCodecs({"Lucene3x", "Lucene40","Lucene41","Lucene42","Lucene45"})
 public class StreamingTest extends SolrCloudTestCase {