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

Remove warnings from StreamBytesHandler

This commit is contained in:
Eduardo Gurgel 2016-06-25 13:41:46 +12:00
parent a2f822cfbe
commit 01ee474896

View file

@ -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