HBASE-6641 more message with DoNotRetryIOException in client
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1377121 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2e0e23eb98
commit
8375bfcba9
|
@ -129,7 +129,7 @@ extends RetriesExhaustedException {
|
|||
for (Throwable t : ths) {
|
||||
if (t == null) continue;
|
||||
String name = "";
|
||||
if (t instanceof NoSuchColumnFamilyException) {
|
||||
if (t instanceof DoNotRetryIOException) {
|
||||
name = t.getMessage();
|
||||
} else {
|
||||
name = t.getClass().getSimpleName();
|
||||
|
|
Loading…
Reference in New Issue