diff options
author | Adam Kocoloski <adam@cloudant.com> | 2010-09-06 23:11:56 -0700 |
---|---|---|
committer | Adam Kocoloski <adam@cloudant.com> | 2010-09-06 23:11:56 -0700 |
commit | c61e5a2ede5c3efce2b9db761a28d0210e5b1fd4 (patch) | |
tree | d07ab2a56ca24250be344c3dfec5e139ff53d754 | |
parent | b8b2a9de28f4e74864f69e7681088d871e71820f (diff) |
remove fail_on_warning, closes #2
Warnings appear to be unavoidable if we want to support R13B03 and R14A
-rw-r--r-- | apps/etap/src/etap_web.erl | 1 | ||||
-rw-r--r-- | apps/oauth/src/oauth_http.erl | 1 | ||||
-rw-r--r-- | rebar.config | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/apps/etap/src/etap_web.erl b/apps/etap/src/etap_web.erl index 1ddc0b91..fb7aee16 100644 --- a/apps/etap/src/etap_web.erl +++ b/apps/etap/src/etap_web.erl @@ -26,7 +26,6 @@ %% @todo Support cookies. %% @doc Provide testing functionality for web requests. -module(etap_web). --compile({nowarn_deprecated_function, {http,request,4}}). -export([simple_200/2, simple_404/2, build_request/4]). diff --git a/apps/oauth/src/oauth_http.erl b/apps/oauth/src/oauth_http.erl index 78833650..bf5a4bac 100644 --- a/apps/oauth/src/oauth_http.erl +++ b/apps/oauth/src/oauth_http.erl @@ -1,5 +1,4 @@ -module(oauth_http). --compile({nowarn_deprecated_function, {http,request,4}}). -export([get/1, post/2, response_params/1, response_body/1, response_code/1]). diff --git a/rebar.config b/rebar.config index 9450b1cc..3f2af7ff 100644 --- a/rebar.config +++ b/rebar.config @@ -25,5 +25,5 @@ "rel" ]}. {cover_enabled, true}. -{erl_opts, [debug_info, fail_on_warning]}. +{erl_opts, [debug_info]}. {lib_dirs, ["apps"]}. |