forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When a local table copy was deleted but not yet loaded mnesia could try to load it in a loop, which later when a table copy was added again could result in a crash, since we don't have locks on the receiver anymore. Tables can be simultaneously loaded and added. Fixed by removing the table from the loader queue when it is determined that the local copy is removed. Also don't 'fatal' crash mnesia if table couldn't be loaded due to table already existing.
- Loading branch information
Showing
3 changed files
with
48 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters