From ae186a62149ce68cbb0345735c6f2a45b7e7932a Mon Sep 17 00:00:00 2001 From: Andrei Dan Date: Wed, 4 Nov 2020 11:44:53 +0000 Subject: [PATCH] Tests: Disable ilm history index for doc tests (#64495) (#64575) (cherry picked from commit d9905e6991a2f5370914989336585e711dfa5bf9) Signed-off-by: Andrei Dan --- x-pack/docs/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/x-pack/docs/build.gradle b/x-pack/docs/build.gradle index 3b70e9c4b37..9915683c744 100644 --- a/x-pack/docs/build.gradle +++ b/x-pack/docs/build.gradle @@ -37,6 +37,8 @@ testClusters.integTest { // Disable monitoring exporters for the docs tests setting 'xpack.monitoring.exporters._local.type', 'local' setting 'xpack.monitoring.exporters._local.enabled', 'false' + // disable the ILM history for doc tests to avoid potential lingering tasks that'd cause test flakiness + setting 'indices.lifecycle.history_index_enabled', 'false' setting 'xpack.license.self_generated.type', 'trial' setting 'xpack.security.authc.realms.file.file.order', '0' setting 'xpack.security.authc.realms.native.native.order', '1'