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:
Michael Stack 2012-08-24 21:37:31 +00:00
parent 2e0e23eb98
commit 8375bfcba9
1 changed files with 1 additions and 1 deletions

View File

@ -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();