SOLR-5421: Remove double set of distrib.from param in processAdd method of DistributedUpdateProcessor

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1542177 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2013-11-15 05:44:14 +00:00
parent 7b608c2e1f
commit a917f0fd3e
2 changed files with 3 additions and 2 deletions

View File

@ -90,6 +90,9 @@ Other Changes
* SOLR-5399: Add distributed request tracking information to DebugComponent * SOLR-5399: Add distributed request tracking information to DebugComponent
(Tomás Fernández Löbbe via Ryan Ernst) (Tomás Fernández Löbbe via Ryan Ernst)
* SOLR-5421: Remove double set of distrib.from param in processAdd method of
DistributedUpdateProcessor. (Anshum Gupta via shalin)
================== 4.6.0 ================== ================== 4.6.0 ==================

View File

@ -593,8 +593,6 @@ public class DistributedUpdateProcessor extends UpdateRequestProcessor {
zkController.getBaseUrl(), req.getCore().getName())); zkController.getBaseUrl(), req.getCore().getName()));
} }
params.set("distrib.from", ZkCoreNodeProps.getCoreUrl(
zkController.getBaseUrl(), req.getCore().getName()));
cmdDistrib.distribAdd(cmd, nodes, params); cmdDistrib.distribAdd(cmd, nodes, params);
} }