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