Skip to content

Commit 9f08c33

Browse files
committed
Mute RecoveryIT
1 parent c779a54 commit 9f08c33

File tree

1 file changed

+3
-1
lines changed
  • qa/rolling-upgrade-legacy/src/test/java/org/elasticsearch/upgrades

1 file changed

+3
-1
lines changed

qa/rolling-upgrade-legacy/src/test/java/org/elasticsearch/upgrades/RecoveryIT.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
package org.elasticsearch.upgrades;
99

1010
import org.apache.http.util.EntityUtils;
11+
import org.apache.lucene.tests.util.LuceneTestCase;
1112
import org.elasticsearch.Version;
1213
import org.elasticsearch.action.support.PlainActionFuture;
1314
import org.elasticsearch.client.Request;
@@ -52,6 +53,7 @@
5253
/**
5354
* In depth testing of the recovery mechanism during a rolling restart.
5455
*/
56+
@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/99778")
5557
public class RecoveryIT extends AbstractRollingTestCase {
5658

5759
private static String CLUSTER_NAME = System.getProperty("tests.clustername");
@@ -752,7 +754,7 @@ public void testSoftDeletesDisabledWarning() throws Exception {
752754
*/
753755
private static void updateIndexSettingsPermittingSlowlogDeprecationWarning(String index, Settings.Builder settings) throws IOException {
754756
Request request = new Request("PUT", "/" + index + "/_settings");
755-
request.setJsonEntity(org.elasticsearch.common.Strings.toString(settings.build()));
757+
request.setJsonEntity(Strings.toString(settings.build()));
756758
if (UPGRADE_FROM_VERSION.before(Version.V_7_17_9)) {
757759
// There is a bug (fixed in 7.17.9 and 8.7.0 where deprecation warnings could leak into ClusterApplierService#applyChanges)
758760
// Below warnings are set (and leaking) from an index in this test case

0 commit comments

Comments
 (0)