Description
HADOOP-15708 made some changes to TestConfigurationDeprecation. One of them was adding
final static String CONFIG4 = new File("./test-config4" + "-TestConfigurationDeprecation.xml").getAbsolutePath();
which we never clean up in the tearDown method:
@After public void tearDown() throws Exception { new File(CONFIG).delete(); new File(CONFIG2).delete(); new File(CONFIG3).delete(); }
This results in that file being left behind, and causing a license warning in test runs.
Attachments
Attachments
Issue Links
- is broken by
-
HADOOP-15708 Reading values from Configuration before adding deprecations make it impossible to read value with deprecated key
- Resolved