Skip to content

Instantly share code, notes, and snippets.

@stefan-vatov
Created June 13, 2021 03:20
Show Gist options
  • Save stefan-vatov/efdc4370936ab37469c9babd671cbf70 to your computer and use it in GitHub Desktop.
Save stefan-vatov/efdc4370936ab37469c9babd671cbf70 to your computer and use it in GitHub Desktop.
[Ping clustered notes] #horde
{Task, fn -> ping_nodes() end}
defp ping_nodes() do
Process.sleep(1_000)
Node.list()
|> Enum.each(fn node ->
IO.puts("[#{inspect(Node.self())} -> #{inspect(node)}] #{inspect(Node.ping(node))}")
end)
ping_nodes()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment