mirror of https://github.com/apache/activemq.git
ignore errors on dir cleanup
This commit is contained in:
parent
c5cebd5ec6
commit
f1df9f8b82
|
@ -95,7 +95,7 @@ public class MasterLevelDBStoreTest {
|
||||||
public void stop() throws Exception {
|
public void stop() throws Exception {
|
||||||
if (store.isStarted()) {
|
if (store.isStarted()) {
|
||||||
store.stop();
|
store.stop();
|
||||||
FileUtils.deleteDirectory(store.directory());
|
FileUtils.deleteQuietly(store.directory());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue