I see the following in solr's DistributedUpdateProcessor:

boolean isReplayOrPeersync = (cmd.getFlags() & (UpdateCommand.REPLAY |
UpdateCommand.REPLAY)) != 0;

Shouldn't that be the following?

boolean isReplayOrPeersync = (cmd.getFlags() & (UpdateCommand.REPLAY |
UpdateCommand.PEER_SYNC)) != 0;

-- 
Regards,
Shalin Shekhar Mangar.

Reply via email to