SOLR-3854 : Disable SSL on OSX for this test for now.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1567203 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2014-02-11 16:17:38 +00:00
parent 8c74d9268d
commit e3180317c8
1 changed files with 6 additions and 3 deletions

View File

@ -26,6 +26,7 @@ import java.util.regex.Pattern;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.lucene.util.Constants;
import org.apache.solr.client.solrj.SolrQuery;
import org.apache.solr.client.solrj.SolrServer;
import org.apache.solr.client.solrj.SolrServerException;
@ -55,9 +56,11 @@ public class BasicDistributedZk2Test extends AbstractFullDistribZkTestBase {
private static final String SHARD1 = "shard1";
private static final String ONE_NODE_COLLECTION = "onenodecollection";
@BeforeClass
public static void beforeThisClass2() throws Exception {
static {
if (Constants.MAC_OS_X) {
// disable while we look into mac test fail
ALLOW_SSL = false;
}
}
public BasicDistributedZk2Test() {