SOLR-5633: HttpShardHandlerFactory should make its http client available to subclasses

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1559236 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Ernst 2014-01-17 19:45:43 +00:00
parent a3c48b5ac4
commit 7ace4d4997
2 changed files with 4 additions and 1 deletions

View File

@ -282,6 +282,9 @@ Other Changes
* SOLR-5632: Improve response message for reloading a non-existent core.
(Anshum Gupta via Mark Miller)
* SOLR-5633: HttpShardHandlerFactory should make its http client available to subclasses.
(Ryan Ernst)
================== 4.6.1 ==================
Versions of Major Components

View File

@ -61,7 +61,7 @@ public class HttpShardHandlerFactory extends ShardHandlerFactory implements org.
new DefaultSolrThreadFactory("httpShardExecutor")
);
private HttpClient defaultClient;
protected HttpClient defaultClient;
private LBHttpSolrServer loadbalancer;
//default values:
int soTimeout = 0;