[
https://issues.apache.org/jira/browse/SOLR-5224?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
David Smiley updated SOLR-5224:
-------------------------------
Fix Version/s: (was: 4.7)
4.8
> SolrCmdDistributor flush functions should combine original request params
> -------------------------------------------------------------------------
>
> Key: SOLR-5224
> URL: https://issues.apache.org/jira/browse/SOLR-5224
> Project: Solr
> Issue Type: Bug
> Components: SolrCloud
> Affects Versions: 4.3.1, 4.4
> Reporter: ludovic Boutros
> Assignee: Mark Miller
> Fix For: 4.8
>
> Attachments: SOLR-5224.patch
>
>
> The flush commands in the class SolrCmdDistributor do not combine original
> request params into external update requests.
> The actual code is :
> {code:title=SolrCmdDistributor.java|borderStyle=solid}
> UpdateRequestExt ureq = new UpdateRequestExt();
>
> ModifiableSolrParams combinedParams = new ModifiableSolrParams();
>
> for (AddRequest aReq : alist) {
> AddUpdateCommand cmd = aReq.cmd;
> combinedParams.add(aReq.params);
>
> ureq.add(cmd.solrDoc, cmd.commitWithin, cmd.overwrite);
> }
>
> if (ureq.getParams() == null) ureq.setParams(new
> ModifiableSolrParams());
> ureq.getParams().add(combinedParams);
> {code}
> but, the params from the original request: cmd.getReq().getParams() should be
> combined as well in order to get them back in custom update processors for
> instance.
--
This message was sent by Atlassian JIRA
(v6.2#6252)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]