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 24
24
import org .apache .lucene .util .Accountable ;
25
25
import org .apache .lucene .util .BitDocIdSet ;
26
26
import org .apache .lucene .util .BitSet ;
27
- import org .elasticsearch .ExceptionsHelper ;
28
27
import org .elasticsearch .cluster .node .DiscoveryNode ;
29
28
import org .elasticsearch .cluster .node .DiscoveryNodeRole ;
30
29
import org .elasticsearch .common .cache .Cache ;
35
34
import org .elasticsearch .common .lucene .search .Queries ;
36
35
import org .elasticsearch .common .settings .Setting ;
37
36
import org .elasticsearch .common .settings .Setting .Property ;
37
+ import org .elasticsearch .common .util .concurrent .FutureUtils ;
38
38
import org .elasticsearch .core .TimeValue ;
39
39
import org .elasticsearch .index .Index ;
40
40
import org .elasticsearch .index .IndexSettings ;
@@ -236,7 +236,7 @@ public BitSet getBitSet(LeafReaderContext context) {
236
236
try {
237
237
return getAndLoadIfNotPresent (query , context );
238
238
} catch (ExecutionException e ) {
239
- throw ExceptionsHelper . convertToElastic (e );
239
+ throw FutureUtils . rethrowExecutionException (e );
240
240
}
241
241
}
242
242
You can’t perform that action at this time.
0 commit comments