From d142882c635a76b60e7191ff5f5e2387c91aab30 Mon Sep 17 00:00:00 2001 From: Russ Cam Date: Wed, 15 Apr 2020 11:05:24 +1000 Subject: [PATCH] Update cluster.remote.connect to node.remote_cluster_client This commit updates the cluster.remote.connect setting to allow integration tests to run against master 8.0.0 snapshots --- .../ManagedElasticsearch/Clusters/ClientTestClusterBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tests.Core/ManagedElasticsearch/Clusters/ClientTestClusterBase.cs b/tests/Tests.Core/ManagedElasticsearch/Clusters/ClientTestClusterBase.cs index 3b50bf93d38..70f2f1e1701 100644 --- a/tests/Tests.Core/ManagedElasticsearch/Clusters/ClientTestClusterBase.cs +++ b/tests/Tests.Core/ManagedElasticsearch/Clusters/ClientTestClusterBase.cs @@ -53,7 +53,7 @@ params ElasticsearchPlugin[] plugins Add(AttributeKey("testingcluster"), "true"); Add(AttributeKey("gateway"), "true"); Add("search.remote.connect", "true", "<8.0.0"); - Add("cluster.remote.connect", "true", ">=8.0.0-SNAPSHOT"); + Add("node.remote_cluster_client", "true", ">=8.0.0-SNAPSHOT"); Add($"script.max_compilations_per_minute", "10000", "<6.0.0-rc1"); Add($"script.max_compilations_rate", "10000/1m", ">=6.0.0-rc1");