ignore errors on dir cleanup

This commit is contained in:
gtully 2015-01-07 17:06:12 +00:00
parent c5cebd5ec6
commit f1df9f8b82
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class MasterLevelDBStoreTest {
public void stop() throws Exception {
if (store.isStarted()) {
store.stop();
FileUtils.deleteDirectory(store.directory());
FileUtils.deleteQuietly(store.directory());
}
}
}