We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b9d1d1 commit 7a7eaf0Copy full SHA for 7a7eaf0
deps/rabbit_common/src/rabbit_nodes_common.erl
@@ -53,6 +53,8 @@ names(Hostname, RetriesLeft) ->
53
[Hostname, RetriesLeft]),
54
case catch epmd_names(Hostname) of
55
{ok, R } -> {ok, R};
56
+ noport ->
57
+ names(Hostname, RetriesLeft - 1);
58
{error, _} ->
59
names(Hostname, RetriesLeft - 1)
60
end.
0 commit comments