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

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.
This commit is contained in:
Loïc Hoguin 2020-04-08 10:28:27 +02:00
parent f79d60e0c7
commit 0d0e7d164c
No known key found for this signature in database
GPG key ID: 8A9DF795F6FED764

View file

@ -24,7 +24,7 @@
suite() -> suite() ->
Timeout = case os:type() of Timeout = case os:type() of
{win32, _} -> 60000; {win32, _} -> 120000;
_ -> 30000 _ -> 30000
end, end,
[{timetrap, Timeout}]. [{timetrap, Timeout}].