[
https://issues.apache.org/jira/browse/HADOOP-10236?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13873389#comment-13873389
]
Hudson commented on HADOOP-10236:
---------------------------------
SUCCESS: Integrated in Hadoop-Hdfs-trunk #1646 (See
[https://builds.apache.org/job/Hadoop-Hdfs-trunk/1646/])
HADOOP-10236. Fix typo in o.a.h.ipc.Client#checkResponse. Contributed by Akira
Ajisaka. (suresh:
http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1558498)
* /hadoop/common/trunk/hadoop-common-project/hadoop-common/CHANGES.txt
*
/hadoop/common/trunk/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/ipc/Client.java
> Fix typo in o.a.h.ipc.Client#checkResponse
> ------------------------------------------
>
> Key: HADOOP-10236
> URL: https://issues.apache.org/jira/browse/HADOOP-10236
> Project: Hadoop Common
> Issue Type: Bug
> Affects Versions: 2.2.0
> Reporter: Akira AJISAKA
> Assignee: Akira AJISAKA
> Priority: Trivial
> Labels: newbie
> Fix For: 2.4.0
>
> Attachments: HADOOP-10236.patch
>
>
> There's a typo in o.a.h.ipc.Client.java.
> {code}
> throw new IOException("Client IDs not matched: local ID="
> + StringUtils.byteToHexString(clientId) + ", ID in reponse="
> +
> StringUtils.byteToHexString(header.getClientId().toByteArray()));
> {code}
> It should be fixed as follows:
> {code}
> throw new IOException("Client IDs not matched: local ID="
> + StringUtils.byteToHexString(clientId) + ", ID in response="
> +
> StringUtils.byteToHexString(header.getClientId().toByteArray()));
> {code}
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)