summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/action/search/SearchDfsQueryAndFetchAsyncAction.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/java/org/elasticsearch/action/search/SearchDfsQueryAndFetchAsyncAction.java')
-rw-r--r--core/src/main/java/org/elasticsearch/action/search/SearchDfsQueryAndFetchAsyncAction.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/src/main/java/org/elasticsearch/action/search/SearchDfsQueryAndFetchAsyncAction.java b/core/src/main/java/org/elasticsearch/action/search/SearchDfsQueryAndFetchAsyncAction.java
index 54117495cb..9db3a21c48 100644
--- a/core/src/main/java/org/elasticsearch/action/search/SearchDfsQueryAndFetchAsyncAction.java
+++ b/core/src/main/java/org/elasticsearch/action/search/SearchDfsQueryAndFetchAsyncAction.java
@@ -47,10 +47,11 @@ class SearchDfsQueryAndFetchAsyncAction extends AbstractSearchAsyncAction<DfsSea
private final SearchPhaseController searchPhaseController;
SearchDfsQueryAndFetchAsyncAction(Logger logger, SearchTransportService searchTransportService,
Function<String, DiscoveryNode> nodeIdToDiscoveryNode,
- Map<String, AliasFilter> aliasFilter, SearchPhaseController searchPhaseController,
- Executor executor, SearchRequest request, ActionListener<SearchResponse> listener,
- GroupShardsIterator shardsIts, long startTime, long clusterStateVersion, SearchTask task) {
- super(logger, searchTransportService, nodeIdToDiscoveryNode, aliasFilter, executor,
+ Map<String, AliasFilter> aliasFilter, Map<String, Float> concreteIndexBoosts,
+ SearchPhaseController searchPhaseController, Executor executor, SearchRequest request,
+ ActionListener<SearchResponse> listener, GroupShardsIterator shardsIts,
+ long startTime, long clusterStateVersion, SearchTask task) {
+ super(logger, searchTransportService, nodeIdToDiscoveryNode, aliasFilter, concreteIndexBoosts, executor,
request, listener, shardsIts, startTime, clusterStateVersion, task);
this.searchPhaseController = searchPhaseController;
queryFetchResults = new AtomicArray<>(firstResults.length());