mirror of https://github.com/apache/lucene.git
SOLR-11054: In SoftAutoCommitTest.testSoftAndHardCommitMaxDocs() all indexed docs must be searchable
This commit is contained in:
parent
9d8d3b0f29
commit
04956b8a90
|
@ -152,6 +152,12 @@ 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));
|
||||
|
|
Loading…
Reference in New Issue