SOLR-5880: Revert last commit - confused the stack trace - instead, @BadApple this test method for now.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1580674 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2014-03-24 00:30:07 +00:00
parent c4b14c5863
commit 38e4a746e2
1 changed files with 1 additions and 2 deletions

View File

@ -312,6 +312,7 @@ public class CloudSolrServerTest extends AbstractFullDistribZkTestBase {
indexDoc(doc); indexDoc(doc);
} }
@BadApple(bugUrl = "https://issues.apache.org/jira/browse/SOLR-5880")
public void testShutdown() throws MalformedURLException { public void testShutdown() throws MalformedURLException {
CloudSolrServer server = new CloudSolrServer("[ff01::114]:33332"); CloudSolrServer server = new CloudSolrServer("[ff01::114]:33332");
try { try {
@ -320,8 +321,6 @@ public class CloudSolrServerTest extends AbstractFullDistribZkTestBase {
fail("Expected exception"); fail("Expected exception");
} catch (SolrException e) { } catch (SolrException e) {
assertTrue(e.getCause() instanceof TimeoutException); assertTrue(e.getCause() instanceof TimeoutException);
} catch (RuntimeException e) {
assertTrue(e.getCause() instanceof TimeoutException);
} finally { } finally {
server.shutdown(); server.shutdown();
} }