Skip to content

Commit

Permalink
Merge pull request #7 from vaxelfel/master
Browse files Browse the repository at this point in the history
fix case clause error
  • Loading branch information
jwilberding committed Jun 25, 2014
2 parents 0ff2000 + cd4ed95 commit bb3bd32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/epna_pool.erl
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ handle_info({connection_timeout, C}, State0 = #state{close_fun=CloseFun,
case dict:find(C, Working) of
error ->
{noreply, State0};
{ok, {_, _, Pid}} ->
{ok, {_TRef, Pid}} ->
State1 = cleanup_connection(C, State0),
%% The connection is no longer good, the process running
%% the connection shouldn't do anything else with it. So
Expand Down

0 comments on commit bb3bd32

Please sign in to comment.