Selaa lähdekoodia

Bug 640: use net_kernel:hidden_connect_node() for nodetool

Scott Fritchie 15 vuotta sitten
vanhempi
commit
89a4fe5012
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. +3
    -3
      priv/templates/simplenode.nodetool

+ 3
- 3
priv/templates/simplenode.nodetool Näytä tiedosto

@ -10,10 +10,10 @@ main(Args) ->
{RestArgs, TargetNode} = process_args(Args, [], undefined), {RestArgs, TargetNode} = process_args(Args, [], undefined),
%% See if the node is currently running -- if it's not, we'll bail %% See if the node is currently running -- if it's not, we'll bail
case net_adm:ping(TargetNode) of
pong ->
case {net_kernel:hidden_connect_node(TargetNode), net_adm:ping(TargetNode)} of
{true, pong} ->
ok; ok;
pang ->
{_, pang} ->
io:format("Node ~p not responding to pings.\n", [TargetNode]), io:format("Node ~p not responding to pings.\n", [TargetNode]),
halt(1) halt(1)
end, end,

Ladataan…
Peruuta
Tallenna