File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/main/java/org/elasticsearch/search/query Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ());
You can’t perform that action at this time.
0 commit comments