[
https://issues.apache.org/jira/browse/SOLR-4855?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Shalin Shekhar Mangar resolved SOLR-4855.
-----------------------------------------
Resolution: Fixed
Fix Version/s: 4.4
Committed r1487538 on trunk and r1487540 on branch_4x.
> DistributedUpdateProcessor doesn't check for peer sync
> ------------------------------------------------------
>
> Key: SOLR-4855
> URL: https://issues.apache.org/jira/browse/SOLR-4855
> Project: Solr
> Issue Type: Bug
> Components: SolrCloud
> Affects Versions: 4.3
> Reporter: Shalin Shekhar Mangar
> Assignee: Shalin Shekhar Mangar
> Priority: Minor
> Fix For: 4.4
>
> Attachments: SOLR-4855.patch
>
>
> DistributedUpdateProcessor has the following code:
> {code}
> boolean isReplayOrPeersync = (cmd.getFlags() & (UpdateCommand.REPLAY |
> UpdateCommand.REPLAY)) != 0;
> {code}
> It should be replaced by:
> {code}
> boolean isReplayOrPeersync = (cmd.getFlags() & (UpdateCommand.REPLAY |
> UpdateCommand.PEER_SYNC)) != 0;
> {code}
--
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: [email protected]
For additional commands, e-mail: [email protected]