You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "songwanging (JIRA)" <ji...@apache.org> on 2015/08/02 18:47:04 UTC

[jira] [Created] (HBASE-14179) catch the same Exception twice

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<HRegionInfo> 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)