mirror of https://github.com/apache/lucene.git
SOLR-7305: BlendedInfixLookupFactory swallows root IOException when it occurs. This closes #137
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1669180 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
029b34be9e
commit
29c1de0fa8
|
@ -294,7 +294,9 @@ Bug Fixes
|
|||
|
||||
* SOLR-7254: Make an invalid negative start/rows throw a HTTP 400 error (Bad Request) instead
|
||||
of causing a 500 error. (Ramkumar Aiyengar, Hrishikesh Gadre, yonik)
|
||||
|
||||
|
||||
* SOLR-7305: BlendedInfixLookupFactory swallows root IOException when it occurs.
|
||||
(Stephan Lagraulet via shalin)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
|
|
@ -132,7 +132,7 @@ public class BlendedInfixLookupFactory extends AnalyzingInfixLookupFactory {
|
|||
}
|
||||
};
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException();
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue