You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by wh...@apache.org on 2014/11/10 20:05:45 UTC

hadoop git commit: HADOOP-11289. Fix typo in RpcUtil log message. Contributed by Charles Lamb.

Repository: hadoop
Updated Branches:
  refs/heads/branch-2 adfb830a2 -> ebb0636c9


HADOOP-11289. Fix typo in RpcUtil log message. Contributed by Charles Lamb.


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

Branch: refs/heads/branch-2
Commit: ebb0636c9dcab7970aff970186e257bbba7f263a
Parents: adfb830
Author: Haohui Mai <wh...@apache.org>
Authored: Mon Nov 10 11:04:41 2014 -0800
Committer: Haohui Mai <wh...@apache.org>
Committed: Mon Nov 10 11:05:37 2014 -0800

----------------------------------------------------------------------
 hadoop-common-project/hadoop-common/CHANGES.txt                    | 2 ++
 .../hadoop-nfs/src/main/java/org/apache/hadoop/oncrpc/RpcUtil.java | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/ebb0636c/hadoop-common-project/hadoop-common/CHANGES.txt
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt
index 5916361..99b4628 100644
--- a/hadoop-common-project/hadoop-common/CHANGES.txt
+++ b/hadoop-common-project/hadoop-common/CHANGES.txt
@@ -74,6 +74,8 @@ Release 2.7.0 - UNRELEASED
     HADOOP-11187 NameNode - KMS communication fails after a long period of
     inactivity. (Arun Suresh via atm)
 
+    HADOOP-11289. Fix typo in RpcUtil log message. (Charles Lamb via wheat9)
+
 Release 2.6.0 - 2014-11-15
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/ebb0636c/hadoop-common-project/hadoop-nfs/src/main/java/org/apache/hadoop/oncrpc/RpcUtil.java
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-nfs/src/main/java/org/apache/hadoop/oncrpc/RpcUtil.java b/hadoop-common-project/hadoop-nfs/src/main/java/org/apache/hadoop/oncrpc/RpcUtil.java
index e9878b7..cbc9943 100644
--- a/hadoop-common-project/hadoop-nfs/src/main/java/org/apache/hadoop/oncrpc/RpcUtil.java
+++ b/hadoop-common-project/hadoop-nfs/src/main/java/org/apache/hadoop/oncrpc/RpcUtil.java
@@ -125,7 +125,7 @@ public final class RpcUtil {
         info = new RpcInfo(callHeader, dataBuffer, ctx, e.getChannel(),
             e.getRemoteAddress());
       } catch (Exception exc) {
-        LOG.info("Malfromed RPC request from " + e.getRemoteAddress());
+        LOG.info("Malformed RPC request from " + e.getRemoteAddress());
       }
 
       if (info != null) {