HBASE-1272 Unreadable log messages -- ... to the only server localhost_1237525439599_56094 <- You'd have to be perverse to recognize that as a hostname, startcode, and port
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@777190 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7b8db7bb8c
commit
8feca37650
|
@ -150,6 +150,9 @@ Release 0.20.0 - Unreleased
|
|||
HBASE-1257 base64 encoded values are not contained in quotes during the
|
||||
HBase REST JSON serialization (Brian Beggs via Stack)
|
||||
HBASE-1436 Killing regionserver can make corrupted hfile
|
||||
HBASE-1272 Unreadable log messages -- "... to the only server
|
||||
localhost_1237525439599_56094" <- You'd have to be perverse
|
||||
to recognize that as a hostname, startcode, and port
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||
|
|
|
@ -245,10 +245,10 @@ public class HServerInfo implements WritableComparable<HServerInfo> {
|
|||
|
||||
private static String getServerName(String hostName, int port, long startCode) {
|
||||
StringBuilder name = new StringBuilder(hostName);
|
||||
name.append("_");
|
||||
name.append(startCode);
|
||||
name.append("_");
|
||||
name.append(",");
|
||||
name.append(port);
|
||||
name.append(",");
|
||||
name.append(startCode);
|
||||
return name.toString();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue