You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2014/09/20 20:31:34 UTC

[jira] [Created] (ACCUMULO-3157) MetaDataTableScanner is unclosed upon return from FindOfflineTablets#findOffline()

Ted Yu created ACCUMULO-3157:
--------------------------------

             Summary: MetaDataTableScanner is unclosed upon return from FindOfflineTablets#findOffline()
                 Key: ACCUMULO-3157
                 URL: https://issues.apache.org/jira/browse/ACCUMULO-3157
             Project: Accumulo
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
    Iterator<TabletLocationState> rootScanner = new MetaDataTableScanner(instance, creds, MetadataSchema.TabletsSection.getRange(), RootTable.NAME);
    if ((offline = checkTablets(rootScanner, tservers)) > 0)
      return offline;
...
    Iterator<TabletLocationState> metaScanner = new MetaDataTableScanner(instance, creds, range, MetadataTable.NAME);
    return checkTablets(metaScanner, tservers);
{code}
Upon return, the MetaDataTableScanner is not closed.



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