Browse Source

Merge pull request #76 from Ubiquiti-TeleFi/appfile

Changes to app file and remove compile warnings
pull/75/merge
Chandrashekhar Mullaparthi 12 years ago
parent
commit
61bef107f0
2 changed files with 2 additions and 8 deletions
  1. +1
    -7
      src/ibrowse.app.src
  2. +1
    -1
      src/ibrowse_http_client.erl

+ 1
- 7
src/ibrowse.app.src View File

@ -1,13 +1,7 @@
{application, ibrowse,
[{description, "Erlang HTTP client application"},
{vsn, "4.0.1"},
{modules, [ ibrowse,
ibrowse_http_client,
ibrowse_app,
ibrowse_sup,
ibrowse_lib,
ibrowse_lb ]},
{registered, []},
{registered, [ibrowse_sup, ibrowse]},
{applications, [kernel,stdlib]},
{env, []},
{mod, {ibrowse_app, []}}]}.

+ 1
- 1
src/ibrowse_http_client.erl View File

@ -996,7 +996,7 @@ chunk_request_body(Body, _ChunkSize, Acc) when is_list(Body) ->
parse_response(<<>>, #state{cur_req = undefined}=State) ->
State#state{status = idle};
parse_response(Data, #state{cur_req = undefined}=State) ->
parse_response(Data, #state{cur_req = undefined}) ->
do_trace("Data left to process when no pending request. ~1000.p~n", [Data]),
{error, data_in_status_idle};

Loading…
Cancel
Save