Return-Path: X-Original-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DF58E10B5E for ; Wed, 15 Jan 2014 18:33:35 +0000 (UTC) Received: (qmail 46323 invoked by uid 500); 15 Jan 2014 18:33:29 -0000 Delivered-To: apmail-hadoop-common-issues-archive@hadoop.apache.org Received: (qmail 46214 invoked by uid 500); 15 Jan 2014 18:33:28 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-issues@hadoop.apache.org Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 46014 invoked by uid 99); 15 Jan 2014 18:33:25 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Jan 2014 18:33:25 +0000 Date: Wed, 15 Jan 2014 18:33:25 +0000 (UTC) From: "Suresh Srinivas (JIRA)" To: common-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HADOOP-10236) Fix typo in o.a.h.ipc.Client#checkResponse MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HADOOP-10236?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Suresh Srinivas updated HADOOP-10236: ------------------------------------- Resolution: Fixed Fix Version/s: 2.4.0 Hadoop Flags: Reviewed Status: Resolved (was: Patch Available) I have committed the patch to trunk and branch-2. Thank you Akira Ajisaka! > 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)