HADOOP-10236. Merge change 1558498 from trunk.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1558500 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e1595527c0
commit
79fe328c5f
|
@ -224,6 +224,9 @@ Release 2.4.0 - UNRELEASED
|
||||||
HADOOP-10223. MiniKdc#main() should close the FileReader it creates.
|
HADOOP-10223. MiniKdc#main() should close the FileReader it creates.
|
||||||
(Ted Yu via tucu)
|
(Ted Yu via tucu)
|
||||||
|
|
||||||
|
HADOOP-10236. Fix typo in o.a.h.ipc.Client#checkResponse. (Akira Ajisaka
|
||||||
|
via suresh)
|
||||||
|
|
||||||
Release 2.3.0 - UNRELEASED
|
Release 2.3.0 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -286,7 +286,7 @@ public class Client {
|
||||||
if (!Arrays.equals(id, RpcConstants.DUMMY_CLIENT_ID)) {
|
if (!Arrays.equals(id, RpcConstants.DUMMY_CLIENT_ID)) {
|
||||||
if (!Arrays.equals(id, clientId)) {
|
if (!Arrays.equals(id, clientId)) {
|
||||||
throw new IOException("Client IDs not matched: local ID="
|
throw new IOException("Client IDs not matched: local ID="
|
||||||
+ StringUtils.byteToHexString(clientId) + ", ID in reponse="
|
+ StringUtils.byteToHexString(clientId) + ", ID in response="
|
||||||
+ StringUtils.byteToHexString(header.getClientId().toByteArray()));
|
+ StringUtils.byteToHexString(header.getClientId().toByteArray()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue