[ 
https://issues.apache.org/jira/browse/SOLR-5224?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mark Miller reassigned SOLR-5224:
---------------------------------

    Assignee: Mark Miller
    
> 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
>
> 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 is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to