mirror of https://github.com/apache/lucene.git
set the name of the recovery thread
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1236463 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d405c74084
commit
4d9a1d0862
|
@ -20,10 +20,8 @@ package org.apache.solr.cloud;
|
|||
import java.io.IOException;
|
||||
import java.util.concurrent.ExecutionException;
|
||||
import java.util.concurrent.Future;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.TimeoutException;
|
||||
|
||||
import org.apache.lucene.search.MatchAllDocsQuery;
|
||||
import org.apache.solr.client.solrj.SolrServerException;
|
||||
import org.apache.solr.client.solrj.impl.CommonsHttpSolrServer;
|
||||
import org.apache.solr.client.solrj.request.CoreAdminRequest.PrepRecovery;
|
||||
|
@ -38,10 +36,8 @@ import org.apache.solr.core.RequestHandlers.LazyRequestHandlerWrapper;
|
|||
import org.apache.solr.core.SolrCore;
|
||||
import org.apache.solr.handler.ReplicationHandler;
|
||||
import org.apache.solr.request.SolrRequestHandler;
|
||||
import org.apache.solr.search.SolrIndexSearcher;
|
||||
import org.apache.solr.update.UpdateLog;
|
||||
import org.apache.solr.update.UpdateLog.RecoveryInfo;
|
||||
import org.apache.solr.util.RefCounted;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
|
@ -67,7 +63,7 @@ public class RecoveryStrategy extends Thread {
|
|||
public RecoveryStrategy(SolrCore core) {
|
||||
this.core = core;
|
||||
this.coreName = core.getName();
|
||||
|
||||
setName("RecoveryThread");
|
||||
zkController = core.getCoreDescriptor().getCoreContainer().getZkController();
|
||||
zkStateReader = zkController.getZkStateReader();
|
||||
baseUrl = zkController.getBaseUrl();
|
||||
|
|
Loading…
Reference in New Issue