Skip to content

Commit 4e7756c

Browse files
original-brownbearandreidan
authored andcommitted
Flip batched execution flag to false for test (elastic#126228)
Disabling this to illustrate a point in nightly ccs runs.
1 parent ddfccbe commit 4e7756c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

server/src/main/java/org/elasticsearch/search/SearchService.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
import org.elasticsearch.common.unit.ByteSizeValue;
4646
import org.elasticsearch.common.util.BigArrays;
4747
import org.elasticsearch.common.util.CollectionUtils;
48-
import org.elasticsearch.common.util.FeatureFlag;
4948
import org.elasticsearch.common.util.concurrent.AbstractRunnable;
5049
import org.elasticsearch.common.util.concurrent.ConcurrentCollections;
5150
import org.elasticsearch.common.util.concurrent.EsExecutors;
@@ -283,7 +282,7 @@ public class SearchService extends AbstractLifecycleComponent implements IndexEv
283282
Property.NodeScope
284283
);
285284

286-
private static final boolean BATCHED_QUERY_PHASE_FEATURE_FLAG = new FeatureFlag("batched_query_phase").isEnabled();
285+
private static final boolean BATCHED_QUERY_PHASE_FEATURE_FLAG = false;
287286

288287
/**
289288
* The size of the buffer used for memory accounting.

0 commit comments

Comments
 (0)