mirror of https://github.com/apache/lucene.git
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:
parent
7c24a0367e
commit
73dd9ff015
|
@ -125,8 +125,9 @@ New Features
|
||||||
(Stefan Matheis, Mark Miller)
|
(Stefan Matheis, Mark Miller)
|
||||||
SOLR-3108: Error in SolrCloud's replica lookup code when replica's are hosted in same Solr instance.
|
SOLR-3108: Error in SolrCloud's replica lookup code when replica's are hosted in same Solr instance.
|
||||||
(Bruno Dumon, Sami Siren, Mark Miller)
|
(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)
|
(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
|
* SOLR-1566: Transforming documents in the ResponseWriters. This will allow
|
||||||
for more complex results in responses and open the door for function queries
|
for more complex results in responses and open the door for function queries
|
||||||
|
|
|
@ -167,7 +167,6 @@ public class RecoveryStrategy extends Thread implements SafeStopThread {
|
||||||
ureq.getParams().set(DistributedUpdateProcessor.COMMIT_END_POINT, true);
|
ureq.getParams().set(DistributedUpdateProcessor.COMMIT_END_POINT, true);
|
||||||
ureq.setAction(AbstractUpdateRequest.ACTION.COMMIT, false, true).process(
|
ureq.setAction(AbstractUpdateRequest.ACTION.COMMIT, false, true).process(
|
||||||
server);
|
server);
|
||||||
server.commit();
|
|
||||||
server.shutdown();
|
server.shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue