Skip to content

Commit 6459d80

Browse files
authored
Merge branch 'main' into fix/133135-2-1
2 parents e0d442d + ebb94bd commit 6459d80

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

muted-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,9 @@ tests:
540540
- class: org.elasticsearch.xpack.esql.action.CrossClusterQueryWithPartialResultsIT
541541
method: testPartialResults
542542
issue: https://github.com/elastic/elasticsearch/issues/131481
543+
- class: org.elasticsearch.xpack.ml.integration.ClassificationIT
544+
method: testWithCustomFeatureProcessors
545+
issue: https://github.com/elastic/elasticsearch/issues/134001
543546

544547
# Examples:
545548
#

x-pack/plugin/core/template-resources/src/main/resources/[email protected]

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
"template": {
1111
"lifecycle": {},
1212
"mappings": {
13+
"_meta": {
14+
"template_version": ${xpack.stack.template.version}
15+
},
1316
"properties": {
1417
"meta": {
1518
"properties": {

x-pack/plugin/stack/src/main/java/org/elasticsearch/xpack/stack/StackTemplateRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class StackTemplateRegistry extends IndexTemplateRegistry {
3737

3838
// The stack template registry version. This number must be incremented when we make changes
3939
// to built-in templates.
40-
public static final int REGISTRY_VERSION = 17;
40+
public static final int REGISTRY_VERSION = 18;
4141

4242
public static final String TEMPLATE_VERSION_VARIABLE = "xpack.stack.template.version";
4343
public static final Setting<Boolean> STACK_TEMPLATES_ENABLED = Setting.boolSetting(

0 commit comments

Comments
 (0)