Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 575886B0 for ; Fri, 24 Aug 2012 21:40:29 +0000 (UTC) Received: (qmail 25724 invoked by uid 500); 24 Aug 2012 21:40:29 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 25647 invoked by uid 500); 24 Aug 2012 21:40:29 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 25638 invoked by uid 99); 24 Aug 2012 21:40:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Aug 2012 21:40:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Aug 2012 21:40:27 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 516EF23889DA for ; Fri, 24 Aug 2012 21:39:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1377124 - /hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java Date: Fri, 24 Aug 2012 21:39:43 -0000 To: commits@hbase.apache.org From: stack@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120824213943.516EF23889DA@eris.apache.org> Author: stack Date: Fri Aug 24 21:39:42 2012 New Revision: 1377124 URL: http://svn.apache.org/viewvc?rev=1377124&view=rev Log: HBASE-6641 more message with DoNotRetryIOException in client Modified: hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java Modified: hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java URL: http://svn.apache.org/viewvc/hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java?rev=1377124&r1=1377123&r2=1377124&view=diff ============================================================================== --- hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java (original) +++ hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java Fri Aug 24 21:39:42 2012 @@ -123,7 +123,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();