chore: add 11214 changelog

This commit is contained in:
zhongwencool 2023-07-07 08:10:33 +08:00
parent 221f6eba06
commit 9f57ba510e
2 changed files with 9 additions and 5 deletions

View File

@ -60,6 +60,11 @@
-export_type([tnx_id/0, succeed_num/0]).
-boot_mnesia({mnesia, [boot]}).
-include_lib("emqx/include/logger.hrl").
-include("emqx_conf.hrl").
-ifdef(TEST).
-compile(export_all).
-compile(nowarn_export_all).
@ -67,13 +72,11 @@
start_link() ->
start_link(-1).
start_link(Node, Name, RetryMs) ->
start_link(-1, Node, Name, RetryMs).
-endif.
-boot_mnesia({mnesia, [boot]}).
-include_lib("emqx/include/logger.hrl").
-include("emqx_conf.hrl").
-define(INITIATE(MFA), {initiate, MFA}).
-define(CATCH_UP, catch_up).
-define(TIMEOUT, timer:minutes(1)).

View File

@ -0,0 +1 @@
Fix a bug where node configuration may fail to synchronize correctly when joining the cluster.