SOLR-3437: Recovery issues a spurious commit to the cluster.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1334449 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-05-05 16:59:05 +00:00
parent 7c24a0367e
commit 73dd9ff015
2 changed files with 2 additions and 2 deletions

View File

@ -125,8 +125,9 @@ New Features
(Stefan Matheis, Mark Miller)
SOLR-3108: Error in SolrCloud's replica lookup code when replica's are hosted in same Solr instance.
(Bruno Dumon, Sami Siren, Mark Miller)
SOLR-3080: Remove shard info from zookeeper when SolrCore is explicitlyunloaded.
SOLR-3080: Remove shard info from zookeeper when SolrCore is explicitly unloaded.
(yonik, Mark Miller, siren)
SOLR-3437: Recovery issues a spurious commit to the cluster. (Trym R. Møller via Mark Miller)
* SOLR-1566: Transforming documents in the ResponseWriters. This will allow
for more complex results in responses and open the door for function queries

View File

@ -167,7 +167,6 @@ public class RecoveryStrategy extends Thread implements SafeStopThread {
ureq.getParams().set(DistributedUpdateProcessor.COMMIT_END_POINT, true);
ureq.setAction(AbstractUpdateRequest.ACTION.COMMIT, false, true).process(
server);
server.commit();
server.shutdown();
}