mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 16:22:32 -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 """
|
@moduledoc """
|
||||||
Streams n bytes of data, with chunked transfer encoding.
|
Streams n bytes of data, with chunked transfer encoding.
|
||||||
"""
|
"""
|
||||||
alias HTTParrot.GeneralRequestInfo
|
|
||||||
use HTTParrot.Cowboy, methods: ~w(GET)
|
use HTTParrot.Cowboy, methods: ~w(GET)
|
||||||
|
|
||||||
def content_types_provided(req, state) do
|
def content_types_provided(req, state) do
|
||||||
|
@ -35,9 +34,9 @@ defmodule HTTParrot.StreamBytesHandler do
|
||||||
Stream.repeatedly(fn -> :random.uniform(255) end)
|
Stream.repeatedly(fn -> :random.uniform(255) end)
|
||||||
|> Stream.take(n)
|
|> Stream.take(n)
|
||||||
|> Enum.chunk(chunk_size, chunk_size, [])
|
|> Enum.chunk(chunk_size, chunk_size, [])
|
||||||
|> Enum.each fn chunk ->
|
|> Enum.each(fn chunk ->
|
||||||
send_func.(List.to_string(chunk))
|
send_func.(List.to_string(chunk))
|
||||||
end
|
end)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue