Skip to content

Commit 6da1dc9

Browse files
committed
Merge branch 'master' into notebook-search
2 parents 8c0f29a + 0292f30 commit 6da1dc9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

zeppelin-zengine/src/test/java/org/apache/zeppelin/notebook/repo/VFSNotebookRepoTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ public void setUp() throws Exception {
8181

8282
@After
8383
public void tearDown() throws Exception {
84-
FileUtils.deleteDirectory(mainZepDir);
84+
//FileUtils.deleteDirectory(mainZepDir);
85+
if (!FileUtils.deleteQuietly(mainZepDir)) {
86+
logger.error("Failed to delete {} ", mainZepDir.getName());
87+
}
8588
}
8689

8790
@Test

0 commit comments

Comments
 (0)