You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2022/01/11 08:25:40 UTC

[lucene] branch main updated: LUCENE-10370: temporarily ignore TestStressNRTReplication

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/main by this push:
     new 9b54fba  LUCENE-10370: temporarily ignore TestStressNRTReplication
9b54fba is described below

commit 9b54fbaa017a0a33e0b4cbd79e72dfc74fac28ee
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Tue Jan 11 09:25:31 2022 +0100

    LUCENE-10370: temporarily ignore TestStressNRTReplication
---
 .../test/org/apache/lucene/replicator/nrt/TestStressNRTReplication.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lucene/replicator/src/test/org/apache/lucene/replicator/nrt/TestStressNRTReplication.java b/lucene/replicator/src/test/org/apache/lucene/replicator/nrt/TestStressNRTReplication.java
index 917a738..b6dcc71 100644
--- a/lucene/replicator/src/test/org/apache/lucene/replicator/nrt/TestStressNRTReplication.java
+++ b/lucene/replicator/src/test/org/apache/lucene/replicator/nrt/TestStressNRTReplication.java
@@ -47,6 +47,7 @@ import org.apache.lucene.document.Field;
 import org.apache.lucene.tests.store.MockDirectoryWrapper;
 import org.apache.lucene.tests.util.LineFileDocs;
 import org.apache.lucene.tests.util.LuceneTestCase;
+import org.apache.lucene.tests.util.LuceneTestCase.AwaitsFix;
 import org.apache.lucene.tests.util.LuceneTestCase.SuppressCodecs;
 import org.apache.lucene.tests.util.LuceneTestCase.SuppressSysoutChecks;
 import org.apache.lucene.tests.util.TestRuleIgnoreTestSuites;
@@ -115,6 +116,7 @@ import org.apache.lucene.util.ThreadInterruptedException;
  * <p>Slow network is simulated with a RateLimiter.
  */
 
+@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/LUCENE-10370") 
 // MockRandom's .sd file has no index header/footer:
 @SuppressCodecs({"MockRandom", "Direct", "SimpleText"})
 @SuppressSysoutChecks(bugUrl = "Stuff gets printed, important stuff for debugging a failure")