File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
plugin/core/src/main/java/org/elasticsearch/xpack/core/template
qa/multi-project/xpack-rest-tests-with-multiple-projects Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments