mirror of https://github.com/apache/lucene.git
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/lucene-solr
This commit is contained in:
commit
939472985f
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue