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/10 21:18:39 UTC

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

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 c13bcac  LUCENE-10370: temporarily ignore TestNRTReplication.
c13bcac is described below

commit c13bcac2e6f99e7576bb6f5edb4c0cec8a7d7100
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Mon Jan 10 22:18:12 2022 +0100

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

diff --git a/lucene/replicator/src/test/org/apache/lucene/replicator/nrt/TestNRTReplication.java b/lucene/replicator/src/test/org/apache/lucene/replicator/nrt/TestNRTReplication.java
index 18145db..176a39c 100644
--- a/lucene/replicator/src/test/org/apache/lucene/replicator/nrt/TestNRTReplication.java
+++ b/lucene/replicator/src/test/org/apache/lucene/replicator/nrt/TestNRTReplication.java
@@ -35,6 +35,7 @@ import org.apache.lucene.store.FSDirectory;
 import org.apache.lucene.store.LockObtainFailedException;
 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;
@@ -43,6 +44,7 @@ import org.apache.lucene.util.IOUtils;
 import org.apache.lucene.util.SuppressForbidden;
 
 // MockRandom's .sd file has no index header/footer:
+@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/LUCENE-10370")
 @SuppressCodecs({"MockRandom", "Direct", "SimpleText"})
 @SuppressSysoutChecks(bugUrl = "Stuff gets printed, important stuff for debugging a failure")
 public class TestNRTReplication extends LuceneTestCase {