From 1949357f0cbcc1e6c94add457c7cad90d35340c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 16 Nov 2018 12:54:34 +0100 Subject: Allow overriding cowboy_http's idle_timeout per request This allows requests that expect to run longer to do so without impacting the configuration of other requests. --- test/handlers/set_options_h.erl | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/handlers/set_options_h.erl (limited to 'test/handlers') diff --git a/test/handlers/set_options_h.erl b/test/handlers/set_options_h.erl new file mode 100644 index 0000000..a26bb98 --- /dev/null +++ b/test/handlers/set_options_h.erl @@ -0,0 +1,22 @@ +%% This module sets options dynamically and performs +%% some related relevant operation for testing the change. + +-module(set_options_h). + +-export([init/2]). + +init(Req, State) -> + set_options(cowboy_req:binding(key, Req), Req, State). + +set_options(<<"idle_timeout_short">>, Req0, State) -> + %% @todo This should be replaced by a cowboy_req:cast/cowboy_stream:cast. + #{pid := Pid, streamid := StreamID} = Req0, + Pid ! {{Pid, StreamID}, {set_options, #{idle_timeout => 500}}}, + {_, Body, Req} = cowboy_req:read_body(Req0), + {ok, cowboy_req:reply(200, #{}, Body, Req), State}; +set_options(<<"idle_timeout_long">>, Req0, State) -> + %% @todo This should be replaced by a cowboy_req:cast/cowboy_stream:cast. + #{pid := Pid, streamid := StreamID} = Req0, + Pid ! {{Pid, StreamID}, {set_options, #{idle_timeout => 60000}}}, + {_, Body, Req} = cowboy_req:read_body(Req0), + {ok, cowboy_req:reply(200, #{}, Body, Req), State}. -- cgit v1.2.3