Skip to content

Commit 2e1e5ce

Browse files
Fix script compilation settings (#4853) (#4855)
Relates: elastic/elasticsearch#58283 This commit updates integration test cluster settings to use disable_max_compilations_rate for 7.9.0-SNAPSHOT and above Co-authored-by: Russ Cam <russ.cam@elastic.co>
1 parent b68eb8a commit 2e1e5ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Tests.Core/ManagedElasticsearch/Clusters/ClientTestClusterBase.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ params ElasticsearchPlugin[] plugins
6060
Add("node.remote_cluster_client", "true", ">=8.0.0-SNAPSHOT");
6161

6262
Add($"script.max_compilations_per_minute", "10000", "<6.0.0-rc1");
63-
Add($"script.max_compilations_rate", "10000/1m", ">=6.0.0-rc1");
63+
Add($"script.max_compilations_rate", "10000/1m", ">=6.0.0-rc1 <7.9.0-SNAPSHOT");
64+
Add($"script.disable_max_compilations_rate", "true", ">=7.9.0-SNAPSHOT");
6465

6566
Add($"script.inline", "true", "<5.5.0");
6667
Add($"script.stored", "true", ">5.0.0-alpha1 <5.5.0");

0 commit comments

Comments
 (0)