HADOOP-8264. Remove irritating double double quotes in front of hostname (Bernd Fondermann via bobby)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1311738 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Joseph Evans 2012-04-10 14:12:02 +00:00
parent df3e1a3158
commit 482e0638e8
2 changed files with 4 additions and 1 deletions

View File

@ -340,6 +340,9 @@ Release 2.0.0 - UNRELEASED
HADOOP-8263. Stringification of IPC calls not useful (todd)
HADOOP-8264. Remove irritating double double quotes in front of hostname
(Bernd Fondermann via bobby)
BREAKDOWN OF HADOOP-7454 SUBTASKS
HADOOP-7455. HA: Introduce HA Service Protocol Interface. (suresh)

View File

@ -782,7 +782,7 @@ private static String getHostDetailsAsString(final String destHost,
hostDetails.append("local host is: ")
.append(quoteHost(localHost))
.append("; ");
hostDetails.append("destination host is: \"").append(quoteHost(destHost))
hostDetails.append("destination host is: ").append(quoteHost(destHost))
.append(":")
.append(destPort).append("; ");
return hostDetails.toString();