File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/main/java/org/elasticsearch/index/cache/bitset Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2424import org .apache .lucene .util .Accountable ;
2525import org .apache .lucene .util .BitDocIdSet ;
2626import org .apache .lucene .util .BitSet ;
27- import org .elasticsearch .ExceptionsHelper ;
2827import org .elasticsearch .cluster .node .DiscoveryNode ;
2928import org .elasticsearch .cluster .node .DiscoveryNodeRole ;
3029import org .elasticsearch .common .cache .Cache ;
3534import org .elasticsearch .common .lucene .search .Queries ;
3635import org .elasticsearch .common .settings .Setting ;
3736import org .elasticsearch .common .settings .Setting .Property ;
37+ import org .elasticsearch .common .util .concurrent .FutureUtils ;
3838import org .elasticsearch .core .TimeValue ;
3939import org .elasticsearch .index .Index ;
4040import org .elasticsearch .index .IndexSettings ;
@@ -236,7 +236,7 @@ public BitSet getBitSet(LeafReaderContext context) {
236236 try {
237237 return getAndLoadIfNotPresent (query , context );
238238 } catch (ExecutionException e ) {
239- throw ExceptionsHelper . convertToElastic (e );
239+ throw FutureUtils . rethrowExecutionException (e );
240240 }
241241 }
242242
You can’t perform that action at this time.
0 commit comments