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
|
HADOOP-11187 NameNode - KMS communication fails after a long period of
|
||||||
inactivity. (Arun Suresh via atm)
|
inactivity. (Arun Suresh via atm)
|
||||||
|
|
||||||
|
HADOOP-11289. Fix typo in RpcUtil log message. (Charles Lamb via wheat9)
|
||||||
|
|
||||||
Release 2.6.0 - 2014-11-15
|
Release 2.6.0 - 2014-11-15
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -125,7 +125,7 @@ public void messageReceived(ChannelHandlerContext ctx, MessageEvent e)
|
|||||||
info = new RpcInfo(callHeader, dataBuffer, ctx, e.getChannel(),
|
info = new RpcInfo(callHeader, dataBuffer, ctx, e.getChannel(),
|
||||||
e.getRemoteAddress());
|
e.getRemoteAddress());
|
||||||
} catch (Exception exc) {
|
} catch (Exception exc) {
|
||||||
LOG.info("Malfromed RPC request from " + e.getRemoteAddress());
|
LOG.info("Malformed RPC request from " + e.getRemoteAddress());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (info != null) {
|
if (info != null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user