chore: fix typo

This commit is contained in:
JimMoen 2022-12-07 15:56:42 +08:00
parent fe0f2bc4e7
commit 97bfe359d1
No known key found for this signature in database
GPG Key ID: 87A520B4F76BA86D
2 changed files with 2 additions and 2 deletions

View File

@ -159,7 +159,7 @@ File format:
password-protected private key files used for dashboard and password-protected private key files used for dashboard and
management HTTPS listeners. [#8129] management HTTPS listeners. [#8129]
- Add message republish supports using placeholder variables to specify QoS and Retain values. Set `${qos}` and `${flags.retain}` use the original QoS & Retain flag. - Add message republish supports using placeholder variables to specify QoS and Retain values. Set `${qos}` and `${flags.retain}` use the original QoS & Retain flag.
- Add supports specifying the network interface address of the cluster listener & rcp call listener. Specify `0.0.0.0` use all network interfaces, or a particular network interface IP address. - Add supports specifying the network interface address of the cluster listener & rpc call listener. Specify `0.0.0.0` use all network interfaces, or a particular network interface IP address.
- ExHook supports to customize the socket parameters for gRPC client. [#8314] - ExHook supports to customize the socket parameters for gRPC client. [#8314]
### Bug fixes ### Bug fixes

View File

@ -106,7 +106,7 @@ setup_node(Node, #{} = Opts) ->
EnvHandler = maps:get(env_handler, Opts, DefaultEnvHandler), EnvHandler = maps:get(env_handler, Opts, DefaultEnvHandler),
%% apps need to be loaded before starting for ekka to find and create mnesia tables %% apps need to be loaded before starting for ekka to find and create mnesia tables
LoadApps = lists:usort([gen_rcp, emqx] ++ ?SLAVE_START_APPS), LoadApps = lists:usort([gen_rpc, emqx] ++ ?SLAVE_START_APPS),
lists:foreach(fun(App) -> lists:foreach(fun(App) ->
rpc:call(Node, application, load, [App]) rpc:call(Node, application, load, [App])
end, LoadApps), end, LoadApps),