HADOOP-10236. Fix typo in o.a.h.ipc.Client#checkResponse. Contributed by Akira Ajisaka.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1558498 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0ff3d6397e
commit
349f25a132
|
@ -517,6 +517,9 @@ Release 2.4.0 - UNRELEASED
|
|||
HADOOP-10223. MiniKdc#main() should close the FileReader it creates.
|
||||
(Ted Yu via tucu)
|
||||
|
||||
HADOOP-10236. Fix typo in o.a.h.ipc.Client#checkResponse. (Akira Ajisaka
|
||||
via suresh)
|
||||
|
||||
Release 2.3.0 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -286,7 +286,7 @@ public class Client {
|
|||
if (!Arrays.equals(id, RpcConstants.DUMMY_CLIENT_ID)) {
|
||||
if (!Arrays.equals(id, clientId)) {
|
||||
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()));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue