File tree 2 files changed +2
-5
lines changed
server/src/main/java/org/elasticsearch/search
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -345,9 +345,6 @@ tests:
345
345
- class : org.elasticsearch.xpack.test.rest.XPackRestIT
346
346
method : test {p0=transform/transforms_stats/Test get transform stats with timeout}
347
347
issue : https://github.com/elastic/elasticsearch/issues/125975
348
- - class : org.elasticsearch.search.SearchServiceSingleNodeTests
349
- method : testSlicingBehaviourForParallelCollection
350
- issue : https://github.com/elastic/elasticsearch/issues/125899
351
348
- class : org.elasticsearch.packaging.test.DockerTests
352
349
method : test021InstallPlugin
353
350
issue : https://github.com/elastic/elasticsearch/issues/116147
Original file line number Diff line number Diff line change @@ -416,12 +416,12 @@ public SearchService(
416
416
417
417
enableQueryPhaseParallelCollection = QUERY_PHASE_PARALLEL_COLLECTION_ENABLED .get (settings );
418
418
if (BATCHED_QUERY_PHASE_FEATURE_FLAG ) {
419
- clusterService .getClusterSettings ()
420
- .addSettingsUpdateConsumer (QUERY_PHASE_PARALLEL_COLLECTION_ENABLED , this ::setEnableQueryPhaseParallelCollection );
421
419
batchQueryPhase = BATCHED_QUERY_PHASE .get (settings );
422
420
} else {
423
421
batchQueryPhase = false ;
424
422
}
423
+ clusterService .getClusterSettings ()
424
+ .addSettingsUpdateConsumer (QUERY_PHASE_PARALLEL_COLLECTION_ENABLED , this ::setEnableQueryPhaseParallelCollection );
425
425
clusterService .getClusterSettings ()
426
426
.addSettingsUpdateConsumer (BATCHED_QUERY_PHASE , bulkExecuteQueryPhase -> this .batchQueryPhase = bulkExecuteQueryPhase );
427
427
memoryAccountingBufferSize = MEMORY_ACCOUNTING_BUFFER_SIZE .get (settings ).getBytes ();
You can’t perform that action at this time.
0 commit comments