Skip to content

Commit

Permalink
Disable ensuring that mnesia is stopped temporary
Browse files Browse the repository at this point in the history
  • Loading branch information
arcusfelis committed Oct 4, 2023
1 parent ecd2e86 commit 359703b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mongoose_internal_databases.erl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ init() ->
init_mnesia() ->
%% Mnesia should not be running at this point, unless it is started by tests.
%% Ensure Mnesia is stopped
mnesia:stop(),
%% TODO Stopping here would break a lot of tests, stop here once tests are fixed.
% mnesia:stop(),
case mnesia:system_info(extra_db_nodes) of
[] ->
mnesia:create_schema([node()]);
Expand Down

0 comments on commit 359703b

Please sign in to comment.