NIFI-3275: Correcting SocketChannelSender log warning message

This closes #1398.
This commit is contained in:
Joe Gresock 2017-01-05 17:41:31 +00:00 committed by Pierre Villard
parent ac42178e9b
commit 68057cb4af
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public class SocketChannelSender extends ChannelSender {
if (actualSendBufSize < maxSendBufferSize) {
logger.warn("Attempted to set Socket Send Buffer Size to " + maxSendBufferSize
+ " bytes but could only set to " + actualSendBufSize + "bytes. You may want to "
+ "consider changing the Operating System's maximum receive buffer");
+ "consider changing the Operating System's maximum send buffer");
}
}
}