Skip to content

Commit

Permalink
fix: make sure to call on drop on database drop
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Feb 15, 2024
1 parent 4af4394 commit 7be37f6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,7 @@ public void drop(String name, String user, String password) {
it.hasNext(); ) {
it.next().onDrop(db);
}
db.callOnDropListeners();
db.close();
} finally {
ODatabaseRecordThreadLocal.instance().set(current);
Expand Down

0 comments on commit 7be37f6

Please sign in to comment.