-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Niklas Johansson edited this page Jun 11, 2020
·
1 revision
Welcome to the wolfpacs wiki!
Mnesia links https://stackoverflow.com/questions/19945609/one-replicated-mnesia-table-has-become-out-of-sync
reinit_mnesia_cluster() ->
rpc:multicall(mnesia, stop, []),
AllNodes = [node() | nodes()],
mnesia:delete_schema(AllNodes),
mnesia:create_schema(AllNodes),
rpc:multicall(mnesia, start, []).