mirror of https://github.com/apache/lucene.git
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:
parent
a3c48b5ac4
commit
7ace4d4997
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue