Bläddra i källkod

Fixed issue with stopping ibrowse

pull/62/head v3.0.2
Chandrashekhar Mullaparthi 13 år sedan
förälder
incheckning
0005cac696
5 ändrade filer med 7 tillägg och 3 borttagningar
  1. +3
    -0
      CHANGELOG
  2. +1
    -0
      CONTRIBUTORS
  3. +1
    -1
      README.md
  4. +1
    -1
      src/ibrowse.app.src
  5. +1
    -1
      src/ibrowse_lb.erl

+ 3
- 0
CHANGELOG Visa fil

@ -1,5 +1,8 @@
CONTRIBUTIONS & CHANGE HISTORY CONTRIBUTIONS & CHANGE HISTORY
============================== ==============================
31-01-2012 - v3.0.2
* Fixed bug when stopping ibrowse. Not service affecting.
23-01-2012 - v3.0.1 23-01-2012 - v3.0.1
* Fixed bug highlighted by Dialyzer * Fixed bug highlighted by Dialyzer

+ 1
- 0
CONTRIBUTORS Visa fil

@ -30,6 +30,7 @@ Ram Krishnan
Richard Cameron Richard Cameron
Ryan Zezeski Ryan Zezeski
Sean Hinde Sean Hinde
Sergey Samokhi
Seth Falcon Seth Falcon
Steve Vinoski Steve Vinoski
Thomas Lindgren Thomas Lindgren

+ 1
- 1
README.md Visa fil

@ -7,7 +7,7 @@ ibrowse is a HTTP client written in erlang.
**Comments to:** chandrashekhar.mullaparthi@gmail.com **Comments to:** chandrashekhar.mullaparthi@gmail.com
**Current Version:** 3.0.1
**Current Version:** 3.0.2
**Latest Version:** git://github.com/cmullaparthi/ibrowse.git **Latest Version:** git://github.com/cmullaparthi/ibrowse.git

+ 1
- 1
src/ibrowse.app.src Visa fil

@ -1,6 +1,6 @@
{application, ibrowse, {application, ibrowse,
[{description, "HTTP client application"}, [{description, "HTTP client application"},
{vsn, "3.0.1"},
{vsn, "3.0.2"},
{modules, [ ibrowse, {modules, [ ibrowse,
ibrowse_http_client, ibrowse_http_client,
ibrowse_app, ibrowse_app,

+ 1
- 1
src/ibrowse_lb.erl Visa fil

@ -112,7 +112,7 @@ handle_call(stop, _From, #state{ets_tid = undefined} = State) ->
{stop, normal, State}; {stop, normal, State};
handle_call(stop, _From, #state{ets_tid = Tid} = State) -> handle_call(stop, _From, #state{ets_tid = Tid} = State) ->
ets:foldl(fun({{_, Pid}, _}, Acc) ->
ets:foldl(fun({Pid, _, _}, Acc) ->
ibrowse_http_client:stop(Pid), ibrowse_http_client:stop(Pid),
Acc Acc
end, [], Tid), end, [], Tid),

Laddar…
Avbryt
Spara