SOLR-5562: ConcurrentUpdateSolrServer constructor ignores supplied httpclient.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1552691 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2013-12-20 14:56:07 +00:00
parent 0a6017d7da
commit 136a2c7190
2 changed files with 4 additions and 1 deletions

View File

@ -210,6 +210,9 @@ Bug Fixes
* SOLR-5543: Core swaps resulted in duplicate core entries in solr.xml when
using solr.xml persistence. (Bill Bell, Alan Woodward)
* SOLR-5562: ConcurrentUpdateSolrServer constructor ignores supplied httpclient.
(Kyle Halliday via Mark Miller)
Optimizations
----------------------

View File

@ -101,7 +101,7 @@ public class ConcurrentUpdateSolrServer extends SolrServer {
public ConcurrentUpdateSolrServer(String solrServerUrl,
HttpClient client, int queueSize, int threadCount) {
this(solrServerUrl, null, queueSize, threadCount, Executors.newCachedThreadPool(
this(solrServerUrl, client, queueSize, threadCount, Executors.newCachedThreadPool(
new SolrjNamedThreadFactory("concurrentUpdateScheduler")));
shutdownExecutor = true;
}