Github user justinleet commented on a diff in the pull request: https://github.com/apache/incubator-metron/pull/486#discussion_r107436680 --- Diff: metron-platform/metron-integration-test/src/main/java/org/apache/metron/integration/components/FluxTopologyComponent.java --- @@ -133,7 +138,25 @@ public void start() throws UnableToStartException { @Override public void stop() { if (stormCluster != null) { - stormCluster.shutdown(); + try { + stormCluster.shutdown(); + if(new File("logs/workers-artifacts").exists()) { + Path rootPath = Paths.get("logs"); + Path destPath = Paths.get("target/logs"); + try { + Files.move(rootPath, destPath); + Files.walk(destPath) --- End diff -- Could this just be a FileUtils.deleteDirectory(destPath)?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---