You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Akira AJISAKA (JIRA)" <ji...@apache.org> on 2014/01/15 02:34:19 UTC

[jira] [Created] (HADOOP-10236) Fix typo in o.a.h.ipc.Client#checkResponse

Akira AJISAKA created HADOOP-10236:
--------------------------------------

             Summary: 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
            Priority: Trivial


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)