From b8fef3309cd6f11796e0afa76d22b6e4705fa0f2 Mon Sep 17 00:00:00 2001 From: Boaz Leskes Date: Fri, 9 Jun 2017 20:31:39 +0200 Subject: [PATCH] await fix testWithRandomException --- .../java/org/elasticsearch/index/translog/TranslogTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/test/java/org/elasticsearch/index/translog/TranslogTests.java b/core/src/test/java/org/elasticsearch/index/translog/TranslogTests.java index ee7073fd53b..48299d04291 100644 --- a/core/src/test/java/org/elasticsearch/index/translog/TranslogTests.java +++ b/core/src/test/java/org/elasticsearch/index/translog/TranslogTests.java @@ -2064,6 +2064,7 @@ public class TranslogTests extends ESTestCase { * that we can, after we hit an exception, open and recover the translog successfully and retrieve all successfully synced operations * from the transaction log. */ + @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/25133") public void testWithRandomException() throws IOException { final int runs = randomIntBetween(5, 10); for (int run = 0; run < runs; run++) {