Skip to content

Commit

Permalink
Enh 37092427 - [36793080->24.09] ENH: Improve the packet publisher pa…
Browse files Browse the repository at this point in the history
…cket delivery failure log message to avoid ambiguity.

[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v24.09/": change = 111545]
  • Loading branch information
lsho committed Sep 24, 2024
1 parent 534b99e commit ab41fc4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6510,9 +6510,9 @@ public void verifyMemberSlow(com.tangosol.coherence.component.net.Member memberS
}
if (cbPacket > 1468)
{
sb.append("It is possible that the packet size greater than ")
.append(cbPacket).append(" is responsible; for example, some network ")
.append("equipment cannot handle packets larger than 1472 bytes (IPv4) or 1468 bytes (IPv6). ")
sb.append("It is possible that the packet size ")
.append(cbPacket).append(" , which is greater than 1468, is responsible; for example, some network ")
.append("equipment cannot handle packets larger than 1468 bytes (UDP) or 1448 bytes (TCP).")
.append("Use the 'ping' command with the <size> option to verify successful")
.append(" delivery of specifically sized packets.");
}
Expand Down

0 comments on commit ab41fc4

Please sign in to comment.