From 01ee4748964f1720d965dceb1339dc3edbb06d6c Mon Sep 17 00:00:00 2001 From: Eduardo Gurgel Date: Sat, 25 Jun 2016 13:41:46 +1200 Subject: [PATCH] Remove warnings from StreamBytesHandler --- lib/httparrot/stream_bytes_handler.ex | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/httparrot/stream_bytes_handler.ex b/lib/httparrot/stream_bytes_handler.ex index 0edcdc9..42e8d29 100644 --- a/lib/httparrot/stream_bytes_handler.ex +++ b/lib/httparrot/stream_bytes_handler.ex @@ -2,7 +2,6 @@ defmodule HTTParrot.StreamBytesHandler do @moduledoc """ Streams n bytes of data, with chunked transfer encoding. """ - alias HTTParrot.GeneralRequestInfo use HTTParrot.Cowboy, methods: ~w(GET) def content_types_provided(req, state) do @@ -35,9 +34,9 @@ defmodule HTTParrot.StreamBytesHandler do Stream.repeatedly(fn -> :random.uniform(255) end) |> Stream.take(n) |> Enum.chunk(chunk_size, chunk_size, []) - |> Enum.each fn chunk -> + |> Enum.each(fn chunk -> send_func.(List.to_string(chunk)) - end + end) end end end