You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2013/06/07 18:54:35 UTC

svn commit: r1490724 - /hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ServerCallable.java

Author: stack
Date: Fri Jun  7 16:54:35 2013
New Revision: 1490724

URL: http://svn.apache.org/r1490724
Log:
HBASE-8704 Log the table name in ServerCallable.prepare

Modified:
    hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ServerCallable.java

Modified: hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ServerCallable.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ServerCallable.java?rev=1490724&r1=1490723&r2=1490724&view=diff
==============================================================================
--- hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ServerCallable.java (original)
+++ hbase/branches/0.95/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ServerCallable.java Fri Jun  7 16:54:35 2013
@@ -95,7 +95,7 @@ public abstract class ServerCallable<T> 
   public void prepare(final boolean reload) throws IOException {
     this.location = connection.getRegionLocation(tableName, row, reload);
     if (this.location == null) {
-      throw new IOException("Failed to find location, tableName=" + tableName + ", row=" +
+      throw new IOException("Failed to find location, tableName=" + Bytes.toString(tableName) + ", row=" +
         Bytes.toString(row) + ", reload=" + reload);
     }
     this.stub = connection.getClient(location.getServerName());