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:26:00 UTC

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

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

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


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

commit 7e50d954f4411fa3d7205243a0277cb39e0e467a
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")