Skip to content

Commit

Permalink
Compile
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Jan 19, 2016
1 parent 504adde commit 4e849cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rabbit_connection_tracking_handler.erl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
init([]) ->
{ok, []}.

handle_event(#event{type = connection_created, props = Details}, State) ->
handle_event(#event{type = connection_created, props = _Details}, State) ->
%% [{type,network},
%% {pid,<0.329.0>},
%% {name,<<"127.0.0.1:60998 -> 127.0.0.1:5672">>},
Expand Down Expand Up @@ -94,7 +94,7 @@ handle_event(#event{type = connection_created, props = Details}, State) ->
%% <<"http://rubybunny.info">>}]},
%% {connected_at,1453214290847}]
{ok, State};
handle_event(#event{type = connection_closed, props = Details}, State) ->
handle_event(#event{type = connection_closed, props = _Details}, State) ->
{ok, State};
handle_event(_Event, State) ->
{ok, State}.
Expand Down

0 comments on commit 4e849cf

Please sign in to comment.