[ 
https://issues.apache.org/jira/browse/HBASE-15710?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15272283#comment-15272283
 ] 

Hudson commented on HBASE-15710:
--------------------------------

FAILURE: Integrated in HBase-0.98-matrix #340 (See 
[https://builds.apache.org/job/HBase-0.98-matrix/340/])
HBASE-15710 Include issue servers information in (apurtell: rev 
ea6f0aaf3e30e515afaa4c02040719965a4a8e71)
* 
hbase-client/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java


> Include issue servers information in RetriesExhaustedWithDetailsException 
> message
> ---------------------------------------------------------------------------------
>
>                 Key: HBASE-15710
>                 URL: https://issues.apache.org/jira/browse/HBASE-15710
>             Project: HBase
>          Issue Type: Bug
>            Reporter: Yu Li
>            Assignee: Yu Li
>            Priority: Minor
>             Fix For: 2.0.0, 1.3.0, 1.4.0, 0.98.20
>
>         Attachments: HBASE-15710.patch
>
>
> In current {{RetriesExhaustedWithDetailsException#getDesc}}, we have 
> constructed a StringBuilder to add information of issue servers but returned 
> the wrong string:
> {code}
>   public static String getDesc(List<Throwable> exceptions,
>                                List<? extends Row> actions,
>                                List<String> hostnamePort) {
>     String s = getDesc(classifyExs(exceptions));
>     StringBuilder addrs = new StringBuilder(s);
>     addrs.append("servers with issues: ");
>     Set<String> uniqAddr = new HashSet<String>();
>     uniqAddr.addAll(hostnamePort);
>     for(String addr : uniqAddr) {
>       addrs.append(addr).append(", ");
>     }
>     return s;
>   }
> {code} 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to