[ 
https://issues.apache.org/jira/browse/SOLR-4855?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13669429#comment-13669429
 ] 

Yonik Seeley commented on SOLR-4855:
------------------------------------

Seems like this should go to the 4.3 branch for 4.3.1 too?
                
> 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]

Reply via email to