You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Robert Kanter (JIRA)" <ji...@apache.org> on 2018/10/15 19:52:00 UTC

[jira] [Created] (HADOOP-15853) TestConfigurationDeprecation leaves behind a temp file, resulting in a license issue

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-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org