Skip to content

Commit

Permalink
Update TP.java
Browse files Browse the repository at this point in the history
  • Loading branch information
cfredri4 committed Nov 11, 2024
1 parent e247fa6 commit 631e607
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/jgroups/protocols/TP.java
Original file line number Diff line number Diff line change
Expand Up @@ -1417,7 +1417,8 @@ protected void sendToAll(byte[] buf, int offset, int length) throws Exception {
if (!Objects.equals(local_physical_addr, target))
dests.add(target);
}
sendUnicasts(dests, buf, offset, length);
if (!dests.isEmpty())
sendUnicasts(dests, buf, offset, length);
if(missing != null)
fetchPhysicalAddrs(missing);
}
Expand Down

0 comments on commit 631e607

Please sign in to comment.