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:
Shalin Shekhar Mangar 2015-03-25 17:41:51 +00:00
parent 029b34be9e
commit 29c1de0fa8
2 changed files with 4 additions and 2 deletions

View File

@ -295,6 +295,8 @@ 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
----------------------

View File

@ -132,7 +132,7 @@ public class BlendedInfixLookupFactory extends AnalyzingInfixLookupFactory {
}
};
} catch (IOException e) {
throw new RuntimeException();
throw new RuntimeException(e);
}
}