Skip to content

Commit

Permalink
GEODE-7689: Use the recipient list without the current member (apache…
Browse files Browse the repository at this point in the history
  • Loading branch information
nabarunnag authored Jan 14, 2020
1 parent 0545fca commit 501d222
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static void sendMessage(Set members, InternalDistributedMember originator, TXLoc
// send msg to all members EXCEPT this member...
Set recipients = new HashSet(members);
recipients.remove(dm.getId());
msg.setRecipients(members);
msg.setRecipients(recipients);
if (logger.isDebugEnabled()) {
logger.debug("Sending TXOriginatorRecoveryMessage: {}", msg);
}
Expand Down

0 comments on commit 501d222

Please sign in to comment.