Browse Source

Update src/ibrowse_lb.erl

ets update counter throws exception when the corresponding process has already shutdown. Added line fee to L248
pull/83/head
maruthavanan 12 years ago
parent
commit
7c55ac9fc6
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/ibrowse_lb.erl

+ 2
- 1
src/ibrowse_lb.erl View File

@ -247,7 +247,8 @@ find_best_connection(Pid, Tid, Max_pipe) ->
find_best_connection(ets:next(Tid, Pid), Tid, Max_pipe);
_ ->
{ok, Pid}
end; _ ->
end;
_ ->
find_best_connection(ets:next(Tid, Pid), Tid, Max_pipe)
end.

Loading…
Cancel
Save