You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ch...@apache.org on 2017/08/02 14:07:19 UTC

hbase git commit: HBASE-18488 Backport HBASE-15710(Include issue servers information in RetriesExhaustedWithDetailsException message) to branch-1.2

Repository: hbase
Updated Branches:
  refs/heads/branch-1.2 5f6cca996 -> 531ae6d8f


HBASE-18488 Backport HBASE-15710(Include issue servers information in RetriesExhaustedWithDetailsException message) to branch-1.2

Signed-off-by: Chia-Ping Tsai <ch...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/531ae6d8
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/531ae6d8
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/531ae6d8

Branch: refs/heads/branch-1.2
Commit: 531ae6d8f473a9edb859b637d542212185fdd375
Parents: 5f6cca9
Author: Yu-Lin Chen <kh...@gmail.com>
Authored: Wed Aug 2 22:03:20 2017 +0800
Committer: Chia-Ping Tsai <ch...@gmail.com>
Committed: Wed Aug 2 22:04:55 2017 +0800

----------------------------------------------------------------------
 .../hadoop/hbase/client/RetriesExhaustedWithDetailsException.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/531ae6d8/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java
----------------------------------------------------------------------
diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java
index 5c179a1..af71b9a 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java
@@ -117,7 +117,7 @@ extends RetriesExhaustedException {
     for(String addr : uniqAddr) {
       addrs.append(addr).append(", ");
     }
-    return s;
+    return addrs.toString();
   }
 
   public String getExhaustiveDescription() {