Skip to content

Commit e6eb8dc

Browse files
committed
DefaultSeeder should not set cluster.routing.use_adaptive_replica_selection on 6.x versions
1 parent 0d0afdb commit e6eb8dc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Tests/Tests.Core/ManagedElasticsearch/NodeSeeders/DefaultSeeder.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public void SeedNode()
5050

5151
public void ClusterSettings()
5252
{
53+
if (TestConfiguration.Instance.InRange("<6.1.0")) return;
5354
var putSettingsResponse = this.Client.ClusterPutSettings(s=>s
5455
.Transient(t=>t
5556
.Add("cluster.routing.use_adaptive_replica_selection", true)

0 commit comments

Comments
 (0)