fix: remsh prefix may not include an underscore
This commit is contained in:
parent
7aca9183b8
commit
e57ab9a8c1
|
@ -456,7 +456,7 @@ maybe_mute_rpc_log(Node) when Node =:= node() ->
|
||||||
ok;
|
ok;
|
||||||
maybe_mute_rpc_log(Node) ->
|
maybe_mute_rpc_log(Node) ->
|
||||||
case atom_to_list(Node) of
|
case atom_to_list(Node) of
|
||||||
"remsh_" ++ _ ->
|
"remsh" ++ _ ->
|
||||||
%% this is either an upgrade script or nodetool
|
%% this is either an upgrade script or nodetool
|
||||||
%% do nothing, the log may go to the 'emqx' command line console
|
%% do nothing, the log may go to the 'emqx' command line console
|
||||||
ok;
|
ok;
|
||||||
|
|
Loading…
Reference in New Issue