From 97bfe359d11956ba3f864be255ecd99eb97c5097 Mon Sep 17 00:00:00 2001 From: JimMoen Date: Wed, 7 Dec 2022 15:56:42 +0800 Subject: [PATCH] chore: fix typo --- CHANGES-4.3.md | 2 +- test/emqx_node_helpers.erl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES-4.3.md b/CHANGES-4.3.md index aa958ad12..dcb858545 100644 --- a/CHANGES-4.3.md +++ b/CHANGES-4.3.md @@ -159,7 +159,7 @@ File format: password-protected private key files used for dashboard and 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 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] ### Bug fixes diff --git a/test/emqx_node_helpers.erl b/test/emqx_node_helpers.erl index c2d16275e..42ed71b1a 100644 --- a/test/emqx_node_helpers.erl +++ b/test/emqx_node_helpers.erl @@ -106,7 +106,7 @@ setup_node(Node, #{} = Opts) -> EnvHandler = maps:get(env_handler, Opts, DefaultEnvHandler), %% 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) -> rpc:call(Node, application, load, [App]) end, LoadApps),