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:
parent
df3e1a3158
commit
482e0638e8
@ -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)
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user