Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,9 @@ private boolean readLength(SelectionKey k) throws IOException {
throw new IOException("Len error. "
+ "A message from " + this.getRemoteSocketAddress() + " with advertised length of " + len
+ " is either a malformed message or too large to process"
+ " (length is greater than jute.maxbuffer=" + BinaryInputArchive.maxBuffer + ")");
+ " (length is greater than jute.maxbuffer=" + BinaryInputArchive.maxBuffer + ")."
+ " Note: If the length appears unusually large,"
+ " this may be a TLS/SSL connection attempt on a non-secure port.");
}
if (!isZKServerRunning()) {
throw new IOException("ZooKeeperServer not running");
Expand Down