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:
parent
94ba872ba7
commit
fdfdb997ad
4 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue