From 0bc0e375ee59e52801b1efa0720d9d6d7b95ce88 Mon Sep 17 00:00:00 2001 From: Rob Bavey Date: Wed, 6 May 2020 10:15:46 -0400 Subject: [PATCH] Remove obsolete setting from Elasticsearch integration test https://github.com/elastic/elasticsearch/pull/56211 removed the ability to turn off certain features in Elasticsearch. This commit removes the setting of `xpack.monitoring.enabled`, as this is now obsolete. --- x-pack/qa/integration/support/helpers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/qa/integration/support/helpers.rb b/x-pack/qa/integration/support/helpers.rb index e28e8e9b6a7..217ebc9d2bc 100644 --- a/x-pack/qa/integration/support/helpers.rb +++ b/x-pack/qa/integration/support/helpers.rb @@ -32,7 +32,7 @@ def elasticsearch(options = {}) temporary_path_data = Stud::Temporary.directory default_settings = { "path.data" => temporary_path_data, - "xpack.monitoring.enabled" => true, + "xpack.monitoring.collection.enabled" => true, "xpack.security.enabled" => true }