mirror of https://github.com/apache/lucene.git
SOLR-6443: Disable test that fails on Jenkins until we can determine the problem.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1621207 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f911e03e31
commit
0fc0002f30
|
@ -24,6 +24,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
|
||||
import org.apache.lucene.util.LuceneTestCase.Slow;
|
||||
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
|
||||
import org.apache.solr.cloud.AbstractZkTestCase;
|
||||
import org.apache.solr.common.cloud.SolrZkClient;
|
||||
import org.apache.solr.common.util.NamedList;
|
||||
|
@ -38,6 +39,7 @@ import org.junit.Test;
|
|||
* Depends on ZK for testing ZooKeeper backed storage logic.
|
||||
*/
|
||||
@Slow
|
||||
@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/SOLR-6444")
|
||||
public class TestManagedResourceStorage extends AbstractZkTestCase {
|
||||
|
||||
/**
|
||||
|
@ -47,8 +49,8 @@ public class TestManagedResourceStorage extends AbstractZkTestCase {
|
|||
public void testZkBasedJsonStorage() throws Exception {
|
||||
|
||||
// test using ZooKeeper
|
||||
assertTrue("Not using ZooKeeper", h.getCoreContainer().isZooKeeperAware());
|
||||
SolrZkClient zkClient = h.getCoreContainer().getZkController().getZkClient();
|
||||
assertTrue("Not using ZooKeeper", h.getCoreContainer().isZooKeeperAware());
|
||||
SolrZkClient zkClient = h.getCoreContainer().getZkController().getZkClient();
|
||||
SolrResourceLoader loader = new SolrResourceLoader("./");
|
||||
// Solr unit tests can only write to their working directory due to
|
||||
// a custom Java Security Manager installed in the test environment
|
||||
|
|
Loading…
Reference in New Issue