aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2023-12-15 16:22:06 +0100
committerLoïc Hoguin <[email protected]>2023-12-15 16:22:06 +0100
commit1547e9b93e9a2b40e03edc6e84015dcbf9dccadb (patch)
treedcd40fc4ec923468e96fb0d8d45ea4ed3b7ff85e /test/handlers
parenta81dc8af9db314e074512e7fc096978c64c9bed1 (diff)
downloadcowboy-1547e9b93e9a2b40e03edc6e84015dcbf9dccadb.tar.gz
cowboy-1547e9b93e9a2b40e03edc6e84015dcbf9dccadb.tar.bz2
cowboy-1547e9b93e9a2b40e03edc6e84015dcbf9dccadb.zip
Increase loop_handler_timeout timeouts
It seems that macOS GH runners don't do timeouts well.
Diffstat (limited to 'test/handlers')
-rw-r--r--test/handlers/loop_handler_timeout_info_h.erl2
-rw-r--r--test/handlers/loop_handler_timeout_init_h.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/handlers/loop_handler_timeout_info_h.erl b/test/handlers/loop_handler_timeout_info_h.erl
index 92f652e..7a1ccba 100644
--- a/test/handlers/loop_handler_timeout_info_h.erl
+++ b/test/handlers/loop_handler_timeout_info_h.erl
@@ -14,7 +14,7 @@ init(Req, _) ->
{cowboy_loop, Req, undefined}.
info(message, Req, State) ->
- erlang:send_after(200, self(), message),
+ erlang:send_after(500, self(), message),
{ok, Req, State, 100};
info(timeout, Req, State) ->
{stop, cowboy_req:reply(<<"299 OK!">>, Req), State}.
diff --git a/test/handlers/loop_handler_timeout_init_h.erl b/test/handlers/loop_handler_timeout_init_h.erl
index ba0b34b..7908fda 100644
--- a/test/handlers/loop_handler_timeout_init_h.erl
+++ b/test/handlers/loop_handler_timeout_init_h.erl
@@ -11,7 +11,7 @@
init(Req, _) ->
#{timeout := Timeout} = cowboy_req:match_qs([{timeout, int}], Req),
- erlang:send_after(200, self(), message),
+ erlang:send_after(500, self(), message),
{cowboy_loop, Req, undefined, Timeout}.
info(message, Req, State) ->