1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

Remove deprecation warnings on conversions

This commit is contained in:
Eduardo Gurgel 2014-06-24 21:37:50 +12:00
parent 94ba872ba7
commit fdfdb997ad
4 changed files with 4 additions and 4 deletions

View file

@ -54,7 +54,7 @@ defmodule HTTParrot do
def prettify_json(status, headers, body, req) do
if JSEX.is_json? body do
body = JSEX.prettify!(body)
headers = List.keystore(headers, "content-length", 0, {"content-length", integer_to_list(String.length(body))})
headers = List.keystore(headers, "content-length", 0, {"content-length", Integer.to_char_list(String.length(body))})
{:ok, req} = :cowboy_req.reply(status, headers, body, req)
end
req

View file

@ -12,7 +12,7 @@ defmodule HTTParrot.DelayedHandler do
def malformed_request(req, state) do
{n, req} = :cowboy_req.binding(:n, req)
try do
n = n |> binary_to_integer |> min(10) |> max(0)
n = n |> String.to_integer |> min(10) |> max(0)
{false, req, n}
rescue
ArgumentError -> {true, req, state}

View file

@ -14,7 +14,7 @@ defmodule HTTParrot.RedirectHandler do
def malformed_request(req, state) do
{n, req} = :cowboy_req.binding(:n, req)
try do
n = n |> binary_to_integer |> max(1)
n = n |> String.to_integer |> max(1)
{false, req, n}
rescue
ArgumentError -> {true, req, state}

View file

@ -18,7 +18,7 @@ defmodule HTTParrot.StreamHandler do
def malformed_request(req, state) do
{n, req} = :cowboy_req.binding(:n, req)
try do
n = n |> binary_to_integer |> min(100) |> max(1)
n = n |> String.to_integer |> min(100) |> max(1)
{false, req, n}
rescue
ArgumentError -> {true, req, state}