From dffdff1f28f4feda04c1c4314a0de5e7e037922d Mon Sep 17 00:00:00 2001 From: Henning Andersen <33268011+henningandersen@users.noreply.github.com> Date: Thu, 27 Feb 2020 17:19:58 +0100 Subject: [PATCH] Disable ILM history in x-pack rest tests (#52868) The ILM history index can be delayed created from one test into the next, which can cause issues for tests using `_all`. Closes #52209 --- x-pack/plugin/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/x-pack/plugin/build.gradle b/x-pack/plugin/build.gradle index 33e877fdd93c6..85bf1a7500d46 100644 --- a/x-pack/plugin/build.gradle +++ b/x-pack/plugin/build.gradle @@ -99,6 +99,8 @@ testClusters.integTest { setting 'xpack.security.transport.ssl.verification_mode', 'certificate' setting 'xpack.security.audit.enabled', 'true' setting 'xpack.license.self_generated.type', 'trial' + // disable ILM history, since it disturbs tests using _all + setting 'indices.lifecycle.history_index_enabled', 'false' keystore 'bootstrap.password', 'x-pack-test-password' keystore 'xpack.security.transport.ssl.secure_key_passphrase', 'testnode'