We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d78b0 commit a17dd74Copy full SHA for a17dd74
modules/data-streams/src/internalClusterTest/java/org/elasticsearch/datastreams/TSDBIndexingIT.java
@@ -331,7 +331,10 @@ public void testTsdbTemplatesNoKeywordFieldType() throws Exception {
331
new Template(
332
Settings.builder()
333
.put("index.mode", "time_series")
334
- .put("index.routing_path", randomBoolean() ? "metricset" : null)
+ .put(
335
+ "index.routing_path",
336
+ randomBoolean() && INDEX_DIMENSIONS_TSID_OPTIMIZATION_FEATURE_FLAG ? null : "metricset"
337
+ )
338
.build(),
339
new CompressedXContent(mappingTemplate),
340
null
0 commit comments