abhishek bafna created OOZIE-2493: ------------------------------------- Summary: Remove action.xml file from local file system instead of hadoop file system Key: OOZIE-2493 URL: https://issues.apache.org/jira/browse/OOZIE-2493 Project: Oozie Issue Type: Bug Components: tests Reporter: abhishek bafna
In the TestDistcpMain#testMain test case, it is deleting a file using HDFS FileSystem instance which actually created on a local FileSystem. {code} // getting file hadoop system instance FileSystem fs = getFileSystem(); ... // creating a storing file on local file system File actionXml = new File(getTestCaseDir(), "action.xml"); ... // Now trying to delete the file on hadoop file system fs.delete(new Path(getTestCaseDir(), "action.xml"), true); {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)