Skip to content

Commit 6b94fc4

Browse files
Flip batched execution flag to false for test
Disabling this to illustrate a point in nightly ccs runs.
1 parent bd0a75d commit 6b94fc4

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
@@ -44,7 +44,6 @@
4444
import org.elasticsearch.common.unit.ByteSizeValue;
4545
import org.elasticsearch.common.util.BigArrays;
4646
import org.elasticsearch.common.util.CollectionUtils;
47-
import org.elasticsearch.common.util.FeatureFlag;
4847
import org.elasticsearch.common.util.concurrent.AbstractRunnable;
4948
import org.elasticsearch.common.util.concurrent.ConcurrentCollections;
5049
import org.elasticsearch.common.util.concurrent.EsExecutors;
@@ -282,7 +281,7 @@ public class SearchService extends AbstractLifecycleComponent implements IndexEv
282281
Property.NodeScope
283282
);
284283

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

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

0 commit comments

Comments
 (0)