This commit is contained in:
Karl Wright 2016-04-19 20:12:18 -04:00
commit 939472985f
2 changed files with 3 additions and 1 deletions

View File

@ -139,6 +139,8 @@ Bug Fixes
* SOLR-8990: Fix top term links from schema browser page to use {!term} parser (hossman)
* SOLR-8971: Preserve root cause when wrapping exceptions (hossman)
Optimizations
----------------------
* SOLR-8722: Don't force a full ZkStateReader refresh on every Overseer operation.

View File

@ -50,7 +50,7 @@ public abstract class ShardHandlerFactory {
catch (Exception e) {
throw new SolrException(SolrException.ErrorCode.SERVER_ERROR,
String.format(Locale.ROOT, "Error instantiating shardHandlerFactory class [%s]: %s",
info.className, e.getMessage()));
info.className, e.getMessage()), e);
}
}