aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2020-04-08 10:28:27 +0200
committerLoïc Hoguin <[email protected]>2020-04-08 10:28:27 +0200
commit0d0e7d164c72799b48275c0c79a7a9d5c08e652e (patch)
tree5932351a2c3f93fa2167fae5b8385a1b302f4177
parentf79d60e0c77122479a1c7b711bafb8f0d2c39e24 (diff)
downloadcowboy-0d0e7d164c72799b48275c0c79a7a9d5c08e652e.tar.gz
cowboy-0d0e7d164c72799b48275c0c79a7a9d5c08e652e.tar.bz2
cowboy-0d0e7d164c72799b48275c0c79a7a9d5c08e652e.zip
Increase the timetrap timeout in req_SUITE on Windows
Still seeing intermittent failures on Windows due to timetrap so let's see if doubling the timeout again helps.
-rw-r--r--test/req_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/req_SUITE.erl b/test/req_SUITE.erl
index 5318840..8216a95 100644
--- a/test/req_SUITE.erl
+++ b/test/req_SUITE.erl
@@ -24,7 +24,7 @@
suite() ->
Timeout = case os:type() of
- {win32, _} -> 60000;
+ {win32, _} -> 120000;
_ -> 30000
end,
[{timetrap, Timeout}].