Skip to content

Commit

Permalink
ignore errors on dir cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gtully committed Jan 7, 2015
1 parent c5cebd5 commit f1df9f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void run() {
public void stop() throws Exception {
if (store.isStarted()) {
store.stop();
FileUtils.deleteDirectory(store.directory());
FileUtils.deleteQuietly(store.directory());
}
}
}

0 comments on commit f1df9f8

Please sign in to comment.