You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2017/01/05 17:55:34 UTC

nifi git commit: NIFI-3275: Correcting SocketChannelSender log warning message

Repository: nifi
Updated Branches:
  refs/heads/master ac42178e9 -> 68057cb4a


NIFI-3275: Correcting SocketChannelSender log warning message

This closes #1398.


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/68057cb4
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/68057cb4
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/68057cb4

Branch: refs/heads/master
Commit: 68057cb4af3a0207671c2654eabbcbd07284a18e
Parents: ac42178
Author: Joe Gresock <jo...@lmco.com>
Authored: Thu Jan 5 17:41:31 2017 +0000
Committer: Pierre Villard <pi...@gmail.com>
Committed: Thu Jan 5 18:55:21 2017 +0100

----------------------------------------------------------------------
 .../apache/nifi/processor/util/put/sender/SocketChannelSender.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/68057cb4/nifi-commons/nifi-processor-utilities/src/main/java/org/apache/nifi/processor/util/put/sender/SocketChannelSender.java
----------------------------------------------------------------------
diff --git a/nifi-commons/nifi-processor-utilities/src/main/java/org/apache/nifi/processor/util/put/sender/SocketChannelSender.java b/nifi-commons/nifi-processor-utilities/src/main/java/org/apache/nifi/processor/util/put/sender/SocketChannelSender.java
index 829e1d6..8d4f875 100644
--- a/nifi-commons/nifi-processor-utilities/src/main/java/org/apache/nifi/processor/util/put/sender/SocketChannelSender.java
+++ b/nifi-commons/nifi-processor-utilities/src/main/java/org/apache/nifi/processor/util/put/sender/SocketChannelSender.java
@@ -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");
                 }
             }
         }