Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3416F18A69 for ; Sun, 2 Aug 2015 16:47:05 +0000 (UTC) Received: (qmail 3078 invoked by uid 500); 2 Aug 2015 16:47:04 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 3020 invoked by uid 500); 2 Aug 2015 16:47:04 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 3004 invoked by uid 99); 2 Aug 2015 16:47:04 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Aug 2015 16:47:04 +0000 Date: Sun, 2 Aug 2015 16:47:04 +0000 (UTC) From: "songwanging (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HBASE-14179) catch the same Exception twice MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 songwanging created HBASE-14179: ----------------------------------- Summary: catch the same Exception twice Key: HBASE-14179 URL: https://issues.apache.org/jira/browse/HBASE-14179 Project: HBase Issue Type: Bug Affects Versions: 1.1.0.1, 1.1.1, 1.1.0, 1.0.1 Reporter: songwanging Priority: Minor In method "markRegionsRecovering()" of class: hbase-1.1.1\hbase-server\src\main\java\org\apache\hadoop\hbase\coordination\ZKSplitLogManagerCoordination.java "InterruptedException" is catched twice. public void markRegionsRecovering(final ServerName serverName, Set userRegions) throws IOException, InterruptedIOException { ... try { Thread.sleep(20); } catch (InterruptedException e1) { throw new InterruptedIOException(); } } catch (InterruptedException e) { throw new InterruptedIOException(); } ... } -- This message was sent by Atlassian JIRA (v6.3.4#6332)