HADOOP-11289. Fix typo in RpcUtil log message. Contributed by Charles Lamb.
This commit is contained in:
parent
ab30d513b6
commit
eace218411
|
@ -417,6 +417,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
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue