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 c1dfd0f commit 3528d7e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,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 3528d7e

Please sign in to comment.