Skip to content

Commit 8fb2134

Browse files
committed
iter
1 parent 8f1e680 commit 8fb2134

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/org/elasticsearch/search/query/QueryPhase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@ static void executeQuery(SearchContext searchContext) throws QueryPhaseExecution
153153
* In a package-private method so that it can be tested without having to
154154
* wire everything (mapperService, etc.)
155155
*/
156-
static void addCollectorsAndSearch(SearchContext searchContext, Long rangeTimestampFrom) throws QueryPhaseExecutionException {
156+
static void addCollectorsAndSearch(SearchContext searchContext, Long timeRangeFilterFromMillis) throws QueryPhaseExecutionException {
157157
final ContextIndexSearcher searcher = searchContext.searcher();
158158
final IndexReader reader = searcher.getIndexReader();
159159
QuerySearchResult queryResult = searchContext.queryResult();
160-
queryResult.setTimeRangeFilterFromMillis(rangeTimestampFrom);
160+
queryResult.setTimeRangeFilterFromMillis(timeRangeFilterFromMillis);
161161
queryResult.searchTimedOut(false);
162162
try {
163163
queryResult.from(searchContext.from());

0 commit comments

Comments
 (0)