Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ private static ElasticsearchCluster createCluster() {
if (setNodes) {
clusterBuilder.nodes(2);
}
// We need to disable ILM history based on a setting, to avoid errors in Serverless where the setting is not available.
boolean disableILMHistory = Booleans.parseBoolean(System.getProperty("yaml.rest.tests.disable_ilm_history", "true"));
if (disableILMHistory) {
// disable ILM history, since it disturbs tests
clusterBuilder.setting("indices.lifecycle.history_index_enabled", "false");
}
return clusterBuilder.build();
}

Expand Down
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -479,9 +479,6 @@ tests:
- class: org.elasticsearch.common.logging.JULBridgeTests
method: testThrowable
issue: https://github.com/elastic/elasticsearch/issues/132280
- class: org.elasticsearch.datastreams.DataStreamsClientYamlTestSuiteIT
method: test {p0=data_stream/10_basic/Create hidden data stream with match all template}
issue: https://github.com/elastic/elasticsearch/issues/132298
- class: org.elasticsearch.xpack.ml.integration.AutodetectMemoryLimitIT
method: testManyDistinctOverFields
issue: https://github.com/elastic/elasticsearch/issues/132308
Expand Down