Skip to content

Commit 8d41f86

Browse files
Merge pull request #8339 from esl/fix-node-stuck-in-partial-partition
Handle missing guids on in node_monitor
2 parents e5d9071 + 998e1a1 commit 8d41f86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbit/src/rabbit_node_monitor.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ handle_call(_Request, _From, State) ->
413413
{noreply, State}.
414414

415415
handle_cast(notify_node_up, State = #state{guid = GUID}) ->
416-
Nodes = rabbit_nodes:list_running() -- [node()],
416+
Nodes = rabbit_nodes:list_reachable() -- [node()],
417417
gen_server:abcast(Nodes, ?SERVER,
418418
{node_up, node(), rabbit_db_cluster:node_type(), GUID}),
419419
%% register other active rabbits with this rabbit

0 commit comments

Comments
 (0)