Skip to content

Commit 945813c

Browse files
authored
Fixing ReindexDatastreamIndexTransportActionITtestTsdbStartEndSet to always provide index.routing_path (#135456)
1 parent f3447d3 commit 945813c

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -600,9 +600,6 @@ tests:
600600
- class: org.elasticsearch.test.rest.yaml.CcsCommonYamlTestSuiteIT
601601
method: test {p0=search/510_range_query_out_of_bounds/Test range query for half_float field with out of bounds upper limit}
602602
issue: https://github.com/elastic/elasticsearch/issues/135365
603-
- class: org.elasticsearch.xpack.migrate.action.ReindexDatastreamIndexTransportActionIT
604-
method: testTsdbStartEndSet
605-
issue: https://github.com/elastic/elasticsearch/issues/135366
606603
- class: org.elasticsearch.xpack.esql.session.SessionUtilsTests
607604
method: testFromPages
608605
issue: https://github.com/elastic/elasticsearch/issues/135377

x-pack/plugin/migrate/src/internalClusterTest/java/org/elasticsearch/xpack/migrate/action/ReindexDatastreamIndexTransportActionIT.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -504,10 +504,7 @@ public void testSettingsAndMappingsFromTemplate() throws IOException {
504504
""";
505505

506506
public void testTsdbStartEndSet() throws Exception {
507-
var templateSettings = Settings.builder().put("index.mode", "time_series");
508-
if (randomBoolean()) {
509-
templateSettings.put("index.routing_path", "metricset");
510-
}
507+
var templateSettings = Settings.builder().put("index.mode", "time_series").put("index.routing_path", "metricset");
511508
var mapping = new CompressedXContent(TSDB_MAPPING);
512509

513510
// create template

0 commit comments

Comments
 (0)