mirror of https://github.com/apache/nifi.git
NIFI-3275: Correcting SocketChannelSender log warning message
This closes #1398.
This commit is contained in:
parent
ac42178e9b
commit
68057cb4af
|
@ -51,7 +51,7 @@ public class SocketChannelSender extends ChannelSender {
|
||||||
if (actualSendBufSize < maxSendBufferSize) {
|
if (actualSendBufSize < maxSendBufferSize) {
|
||||||
logger.warn("Attempted to set Socket Send Buffer Size to " + maxSendBufferSize
|
logger.warn("Attempted to set Socket Send Buffer Size to " + maxSendBufferSize
|
||||||
+ " bytes but could only set to " + actualSendBufSize + "bytes. You may want to "
|
+ " 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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue