From e8a108c9a49a6d74bec76ec148badefc2bca1896 Mon Sep 17 00:00:00 2001 From: Po Chen Date: Fri, 9 Sep 2016 10:24:05 +1000 Subject: [PATCH] fix warnings --- lib/httparrot/cookies_handler.ex | 2 +- lib/httparrot/stream_bytes_handler.ex | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/httparrot/cookies_handler.ex b/lib/httparrot/cookies_handler.ex index c092d78..090b09c 100644 --- a/lib/httparrot/cookies_handler.ex +++ b/lib/httparrot/cookies_handler.ex @@ -10,7 +10,7 @@ defmodule HTTParrot.CookiesHandler do def get_json(req, state) do {cookies, req} = :cowboy_req.cookies(req) - if cookies == [], do: cookies = [{}] + cookies = if cookies == [], do: [{}], else: cookies {response(cookies), req, state} end diff --git a/lib/httparrot/stream_bytes_handler.ex b/lib/httparrot/stream_bytes_handler.ex index 42e8d29..d25e207 100644 --- a/lib/httparrot/stream_bytes_handler.ex +++ b/lib/httparrot/stream_bytes_handler.ex @@ -25,13 +25,13 @@ defmodule HTTParrot.StreamBytesHandler do def get_bytes(req, state) do {n, seed, chunk_size} = state - :random.seed(seed, seed, seed) + :rand.seed(:exs64, {seed, seed, seed}) {{:chunked, stream_response(n, chunk_size)}, req, nil} end defp stream_response(n, chunk_size) do fn(send_func) -> - Stream.repeatedly(fn -> :random.uniform(255) end) + Stream.repeatedly(fn -> :rand.uniform(255) end) |> Stream.take(n) |> Enum.chunk(chunk_size, chunk_size, []) |> Enum.each(fn chunk ->