0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00

Fix concurrent body streaming getting stuck with HTTP/2

This commit is contained in:
Loïc Hoguin 2020-07-03 11:02:59 +02:00
parent 5aac00d60c
commit 03d306e6d1
No known key found for this signature in database
GPG key ID: 8A9DF795F6FED764
2 changed files with 16 additions and 2 deletions

View file

@ -1012,6 +1012,16 @@ stream_body_content_length_nofin_error(Config) ->
ok
end.
stream_body_concurrent(Config) ->
ConnPid = gun_open(Config),
Ref1 = gun:get(ConnPid, "/resp/stream_body/loop", [{<<"accept-encoding">>, <<"gzip">>}]),
Ref2 = gun:get(ConnPid, "/resp/stream_body/loop", [{<<"accept-encoding">>, <<"gzip">>}]),
{response, nofin, 200, _} = gun:await(ConnPid, Ref1, infinity),
{ok, _} = gun:await_body(ConnPid, Ref1, infinity),
{response, nofin, 200, _} = gun:await(ConnPid, Ref2, infinity),
{ok, _} = gun:await_body(ConnPid, Ref2, infinity),
gun:close(ConnPid).
%% @todo Crash when calling stream_body after the fin flag has been set.
%% @todo Crash when calling stream_body after calling reply.
%% @todo Crash when calling stream_body before calling stream_reply.