diff --git a/x-pack/qa/full-cluster-restart/build.gradle b/x-pack/qa/full-cluster-restart/build.gradle index 180d42e7d5d..757d8cd2981 100644 --- a/x-pack/qa/full-cluster-restart/build.gradle +++ b/x-pack/qa/full-cluster-restart/build.gradle @@ -70,7 +70,7 @@ for (Version bwcVersion : bwcVersions.indexCompatible) { setting 'path.repo', "${buildDir}/cluster/shared/repo/${baseName}" // some tests rely on the translog not being flushed - setting 'indices.memory.shard_inactive_time', '20m' + setting 'indices.memory.shard_inactive_time', '60m' setting 'xpack.security.enabled', 'true' setting 'xpack.security.transport.ssl.enabled', 'true' setting 'xpack.license.self_generated.type', 'trial' diff --git a/x-pack/qa/full-cluster-restart/src/test/java/org/elasticsearch/xpack/restart/CoreFullClusterRestartIT.java b/x-pack/qa/full-cluster-restart/src/test/java/org/elasticsearch/xpack/restart/CoreFullClusterRestartIT.java index ad60474a2fb..45f258d7cea 100644 --- a/x-pack/qa/full-cluster-restart/src/test/java/org/elasticsearch/xpack/restart/CoreFullClusterRestartIT.java +++ b/x-pack/qa/full-cluster-restart/src/test/java/org/elasticsearch/xpack/restart/CoreFullClusterRestartIT.java @@ -22,9 +22,4 @@ public class CoreFullClusterRestartIT extends FullClusterRestartIT { .build(); } - @AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/52031") - @Override - public void testRecovery() throws Exception { - super.testRecovery(); - } }