Skip to content

Commit ead2e1b

Browse files
committed
Temp commit
1 parent 4edd732 commit ead2e1b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/template/IndexTemplateRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public void clusterChanged(ClusterChangedEvent event) {
249249
boolean settingsChanged = settingsChanged(event);
250250
for (ProjectMetadata project : event.state().metadata().projects().values()) {
251251
final ProjectMetadata previousProject = event.previousState().metadata().projects().get(project.id());
252-
if (settingsChanged == false && projectChanged(previousProject, project) == false) {
252+
if (project.id() != ProjectId.DEFAULT) {
253253
continue;
254254
}
255255
addIngestPipelinesIfMissing(project);

x-pack/qa/multi-project/xpack-rest-tests-with-multiple-projects/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ dependencies {
1010
testImplementation(testArtifact(project(":x-pack:plugin:security:qa:service-account"), "javaRestTest"))
1111
restXpackTestConfig project(path: ':x-pack:plugin:ilm:qa:rest', configuration: "basicRestSpecs")
1212
restXpackTestConfig project(path: ':x-pack:plugin:downsample:qa:rest', configuration: "basicRestSpecs")
13-
restXpackTestConfig project(path: ':x-pack:plugin:stack', configuration: "basicRestSpecs")
1413
}
1514

1615
// let the yamlRestTests see the classpath of test

0 commit comments

Comments
 (0)