You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Yuhao Bi (JIRA)" <ji...@apache.org> on 2015/07/17 09:53:04 UTC

[jira] [Created] (HBASE-14115) Fix resource leak in HMasterCommandLine

Yuhao Bi created HBASE-14115:
--------------------------------

             Summary: Fix resource leak in HMasterCommandLine
                 Key: HBASE-14115
                 URL: https://issues.apache.org/jira/browse/HBASE-14115
             Project: HBase
          Issue Type: Bug
            Reporter: Yuhao Bi
            Assignee: Yuhao Bi


In HMasterCommandLine#stopMaster(), admin is not closed.

{code:title=HMasterCommandLine.java|borderStyle=solid}
try (Connection connection = ConnectionFactory.createConnection(conf)) {
      try (Admin admin = connection.getAdmin()) {
        connection.getAdmin().shutdown();
      } catch (Throwable t) {
        LOG.error("Failed to stop master", t);
        return 1;
      }
    }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)