Skip to content

Commit

Permalink
Compile
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Jul 18, 2016
1 parent b656f9e commit 62da3c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/rabbit_connection_tracking.erl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
tracked_connection_from_connection_created/1,
tracked_connection_from_connection_state/1,
is_over_connection_limit/1, count_connections_in/1,
on_node_down/1]).
on_node_down/1, on_node_up/1]).

-include_lib("rabbit.hrl").

Expand Down Expand Up @@ -103,8 +103,9 @@ on_node_down(Node) ->
end.

-spec on_node_up(node()) -> ok.
on_node_up(Node) ->
end.
on_node_up(_Node) ->
%% TODO
ok.

-spec is_over_connection_limit(rabbit_types:vhost()) -> boolean().

Expand Down
2 changes: 1 addition & 1 deletion src/rabbit_node_monitor.erl
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ handle_live_rabbit(Node) ->
ok = rabbit_amqqueue:on_node_up(Node),
ok = rabbit_alarm:on_node_up(Node),
ok = rabbit_mnesia:on_node_up(Node),
ok = rabbit_connection_tracking:on_node_up(Node),.
ok = rabbit_connection_tracking:on_node_up(Node).

maybe_autoheal(State = #state{partitions = []}) ->
State;
Expand Down

0 comments on commit 62da3c6

Please sign in to comment.