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:
parent
a2f822cfbe
commit
01ee474896
1 changed files with 2 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue