HBASE-1417 Cleanup disorientating RPC message

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@774436 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-05-13 17:08:10 +00:00
parent 42cae38a26
commit f88ad07fe9
2 changed files with 3 additions and 2 deletions

View File

@ -242,6 +242,7 @@ Release 0.20.0 - Unreleased
(Erik Holstad and Jon Gray via Stack)
HBASE-1413 Fall back to filesystem block size default if HLog blocksize is
not specified
HBASE-1417 Cleanup disorientating RPC message
OPTIMIZATIONS
HBASE-1412 Change values for delete column and column family in KeyValue

View File

@ -202,8 +202,8 @@ public class HBaseClient {
this.remoteId = remoteId;
UserGroupInformation ticket = remoteId.getTicket();
this.setName("IPC Client (" + socketFactory.hashCode() +") connection to " +
remoteId.getAddress().toString() +
" from " + ((ticket==null)?"an unknown user":ticket.getUserName()));
remoteId.getAddress().toString() +
((ticket==null)?" from an unknown user": (" from " + ticket.getUserName())));
this.setDaemon(true);
}