svn merge -c 1311738 from trunk. FIXES 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/branches/branch-2@1311741 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8c1026b4c5
commit
e3901a1e5f
|
@ -227,6 +227,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 @@ public class NetUtils {
|
|||
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