You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2015/12/10 18:30:28 UTC

[5/6] storm git commit: ignore tempdir cleanup failures;

ignore tempdir cleanup failures;


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/db226d04
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/db226d04
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/db226d04

Branch: refs/heads/master
Commit: db226d040d41c4c70b0ac9ad1b90515a78e757f2
Parents: b1ce50d
Author: Chuck Burgess <cb...@progressrail.com>
Authored: Wed Dec 9 15:49:24 2015 -0600
Committer: Chuck Burgess <cb...@progressrail.com>
Committed: Wed Dec 9 15:51:45 2015 -0600

----------------------------------------------------------------------
 storm-core/test/jvm/backtype/storm/localizer/LocalizerTest.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/db226d04/storm-core/test/jvm/backtype/storm/localizer/LocalizerTest.java
----------------------------------------------------------------------
diff --git a/storm-core/test/jvm/backtype/storm/localizer/LocalizerTest.java b/storm-core/test/jvm/backtype/storm/localizer/LocalizerTest.java
index a1f6741..9852532 100644
--- a/storm-core/test/jvm/backtype/storm/localizer/LocalizerTest.java
+++ b/storm-core/test/jvm/backtype/storm/localizer/LocalizerTest.java
@@ -123,7 +123,9 @@ public class LocalizerTest {
 
   @After
   public void tearDown() throws Exception {
-    FileUtils.deleteDirectory(baseDir);
+    try {
+      FileUtils.deleteDirectory(baseDir);
+    } catch (IOException ignore) {}
   }
 
   protected String joinPath(String... pathList) {