fix: remsh prefix may not include an underscore

This commit is contained in:
Zaiming (Stone) Shi 2022-10-12 12:42:37 +02:00
parent 7aca9183b8
commit e57ab9a8c1
1 changed files with 1 additions and 1 deletions

View File

@ -456,7 +456,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;