Created
June 13, 2021 03:20
-
-
Save stefan-vatov/efdc4370936ab37469c9babd671cbf70 to your computer and use it in GitHub Desktop.
[Ping clustered notes] #horde
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{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