diff --git a/include/emqx_release.hrl b/include/emqx_release.hrl index e932f7885..65f08cc2b 100644 --- a/include/emqx_release.hrl +++ b/include/emqx_release.hrl @@ -29,7 +29,7 @@ -ifndef(EMQX_ENTERPRISE). --define(EMQX_RELEASE, {opensource, "4.4.10-alpha.1"}). +-define(EMQX_RELEASE, {opensource, "4.4.10-alpha.2"}). -else. diff --git a/scripts/get-dashboard.sh b/scripts/get-dashboard.sh index 86806e769..65f9a0692 100755 --- a/scripts/get-dashboard.sh +++ b/scripts/get-dashboard.sh @@ -8,8 +8,8 @@ cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")/.." PKG_VSN="${PKG_VSN:-$(./pkg-vsn.sh)}" case "${PKG_VSN}" in 4.3*) - EMQX_CE_DASHBOARD_VERSION='v4.3.10' - EMQX_EE_DASHBOARD_VERSION='v4.3.24' + EMQX_CE_DASHBOARD_VERSION='v4.3.11' + EMQX_EE_DASHBOARD_VERSION='v4.3.26' ;; 4.4*) # keep the above 4.3 untouched, otherwise conflicts! diff --git a/src/emqx_misc.erl b/src/emqx_misc.erl index 0fc51a48e..d84e9189d 100644 --- a/src/emqx_misc.erl +++ b/src/emqx_misc.erl @@ -458,7 +458,7 @@ maybe_mute_rpc_log(Node) when Node =:= node() -> ok; maybe_mute_rpc_log(Node) -> case atom_to_list(Node) of - "remsh_" ++ _ -> + "remsh" ++ _ -> %% this is either an upgrade script or nodetool %% do nothing, the log may go to the 'emqx' command line console ok;