Robert Kanter created HADOOP-15853:
--------------------------------------

             Summary: TestConfigurationDeprecation leaves behind a temp file, 
resulting in a license issue
                 Key: HADOOP-15853
                 URL: https://issues.apache.org/jira/browse/HADOOP-15853
             Project: Hadoop Common
          Issue Type: Improvement
          Components: test
    Affects Versions: 3.3.0
            Reporter: Robert Kanter


HADOOP-15708 made some changes to {{TestConfigurationDeprecation}}.  One of 
them was adding
{code:java}
  final static String CONFIG4 = new File("./test-config4" +
      "-TestConfigurationDeprecation.xml").getAbsolutePath();
{code}
which we never clean up in the {{tearDown}} method:
{code:java}
  @After
  public void tearDown() throws Exception {
    new File(CONFIG).delete();
    new File(CONFIG2).delete();
    new File(CONFIG3).delete();
  }
{code}

This results in that file being left behind, and causing a license warning in 
test runs.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-dev-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-dev-h...@hadoop.apache.org

Reply via email to