Skip to content

Commit

Permalink
more single node bug fix for associated documents
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavis95 committed Mar 23, 2022
1 parent 0d0204a commit 9931487
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,10 @@ public void deleteAssociatedDocuments(String uniqueId) throws IOException {

@Override
public void drop() throws Exception {
deletePath(Path.of(filesPath, indexName));
Path p = Path.of(filesPath, indexName);
if (Files.exists(p)) {
deletePath(p);
}
}

@Override
Expand Down

0 comments on commit 9931487

Please sign in to comment.