aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/proxied_h.erl
diff options
context:
space:
mode:
Diffstat (limited to 'test/handlers/proxied_h.erl')
-rw-r--r--test/handlers/proxied_h.erl10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/handlers/proxied_h.erl b/test/handlers/proxied_h.erl
index d5d4690..818823c 100644
--- a/test/handlers/proxied_h.erl
+++ b/test/handlers/proxied_h.erl
@@ -4,8 +4,8 @@
-export([init/2]).
-init(Req, State) ->
- {ok, cowboy_req:reply(200,
- #{<<"content-type">> => <<"text/plain">>},
- <<"TODO">>,
- Req), State}.
+-spec init(cowboy_req:req(), _) -> no_return().
+init(Req, _) ->
+ _ = cowboy_req:stream_reply(200, #{<<"content-type">> => <<"text/plain">>}, Req),
+ %% We never return to allow querying the stream_info.
+ receive after infinity -> ok end.