You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2013/08/27 20:15:52 UTC

[jira] [Created] (HBASE-9355) HBaseTestingUtility#cleanupDataTestDirOnTestFS() doesn't close the FileSystem

Ted Yu created HBASE-9355:
-----------------------------

             Summary: HBaseTestingUtility#cleanupDataTestDirOnTestFS() doesn't close the FileSystem
                 Key: HBASE-9355
                 URL: https://issues.apache.org/jira/browse/HBASE-9355
             Project: HBase
          Issue Type: Test
            Reporter: Ted Yu
            Priority: Minor


Here is related code:
{code}
  public boolean cleanupDataTestDirOnTestFS() throws IOException {
    boolean ret = getTestFileSystem().delete(dataTestDirOnTestFS, true);
    if (ret)
      dataTestDirOnTestFS = null;
    return ret;
  }
{code}
The FileSystem returned by getTestFileSystem() is not closed.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira