From ea76351419095e156b8adc78de6dfd1e35094ee2 Mon Sep 17 00:00:00 2001 From: Cao Manh Dat Date: Fri, 1 Sep 2017 10:46:13 +0700 Subject: [PATCH] SOLR-11054: Revert the last commit since we found a test failure --- .../src/test/org/apache/solr/update/SoftAutoCommitTest.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/solr/core/src/test/org/apache/solr/update/SoftAutoCommitTest.java b/solr/core/src/test/org/apache/solr/update/SoftAutoCommitTest.java index cb2affabed6..84ec63d6473 100644 --- a/solr/core/src/test/org/apache/solr/update/SoftAutoCommitTest.java +++ b/solr/core/src/test/org/apache/solr/update/SoftAutoCommitTest.java @@ -152,12 +152,6 @@ public class SoftAutoCommitTest extends AbstractSolrTestCase { minHardCommitNanos + "ns", minHardCommitNanos < firstHardNanos); - final Long firstSearcherNanos = monitor.searcher.poll(5000, MILLISECONDS); - assertNotNull("didn't get a single new searcher", firstSearcherNanos); - for (int i = 0; i <= softCommitMaxDocs; i++) { - assertQ("should find one", req("id:"+(8000 + i)) ,"//result[@numFound=1]" ); - } - // wait a bit, w/o other action we shouldn't see any new hard/soft commits assertNull("Got a hard commit we weren't expecting", monitor.hard.poll(1000, MILLISECONDS));