Skip to content

Commit 7a7eaf0

Browse files
Handle a 'noport' clause here
Follow-up to #2722 (cherry picked from commit a087621)
1 parent 2b9d1d1 commit 7a7eaf0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

deps/rabbit_common/src/rabbit_nodes_common.erl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ names(Hostname, RetriesLeft) ->
5353
[Hostname, RetriesLeft]),
5454
case catch epmd_names(Hostname) of
5555
{ok, R } -> {ok, R};
56+
noport ->
57+
names(Hostname, RetriesLeft - 1);
5658
{error, _} ->
5759
names(Hostname, RetriesLeft - 1)
5860
end.

0 commit comments

Comments
 (0)