You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by th...@apache.org on 2014/08/28 23:14:06 UTC

svn commit: r1621207 - /lucene/dev/trunk/solr/core/src/test/org/apache/solr/rest/TestManagedResourceStorage.java

Author: thelabdude
Date: Thu Aug 28 21:14:06 2014
New Revision: 1621207

URL: http://svn.apache.org/r1621207
Log:
SOLR-6443: Disable test that fails on Jenkins until we can determine the problem.

Modified:
    lucene/dev/trunk/solr/core/src/test/org/apache/solr/rest/TestManagedResourceStorage.java

Modified: lucene/dev/trunk/solr/core/src/test/org/apache/solr/rest/TestManagedResourceStorage.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/test/org/apache/solr/rest/TestManagedResourceStorage.java?rev=1621207&r1=1621206&r2=1621207&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/test/org/apache/solr/rest/TestManagedResourceStorage.java (original)
+++ lucene/dev/trunk/solr/core/src/test/org/apache/solr/rest/TestManagedResourceStorage.java Thu Aug 28 21:14:06 2014
@@ -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 
   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