mirror of https://github.com/apache/lucene.git
SOLR-12801: don't do single index check here on windows.
This commit is contained in:
parent
e25d6850c4
commit
b94911b260
|
@ -42,6 +42,7 @@ import java.util.concurrent.TimeUnit;
|
|||
|
||||
import org.apache.lucene.store.Directory;
|
||||
import org.apache.lucene.store.FSDirectory;
|
||||
import org.apache.lucene.util.Constants;
|
||||
import org.apache.lucene.util.LuceneTestCase;
|
||||
import org.apache.lucene.util.LuceneTestCase.Slow;
|
||||
import org.apache.lucene.util.TestUtil;
|
||||
|
@ -899,7 +900,10 @@ public class TestReplicationHandler extends SolrTestCaseJ4 {
|
|||
assertVersions(masterClient, slaveClient);
|
||||
|
||||
checkForSingleIndex(masterJetty);
|
||||
|
||||
if (!Constants.WINDOWS) {
|
||||
checkForSingleIndex(slaveJetty);
|
||||
}
|
||||
|
||||
if (random().nextBoolean()) {
|
||||
// move the slave ahead
|
||||
|
|
Loading…
Reference in New Issue