浏览代码

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 年前
父节点
当前提交
7c55ac9fc6
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/ibrowse_lb.erl

+ 2
- 1
src/ibrowse_lb.erl 查看文件

@ -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.

正在加载...
取消
保存