diff options
author | Björn Svensson <[email protected]> | 2024-05-16 12:23:15 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-01-23 13:29:47 +0100 |
commit | 662f6af98269f78460cf6749f49f241156520e13 (patch) | |
tree | d517e452927f86a8ba08a6ebb1dcaaf1c7c521df | |
parent | 49061587be2cba33f750d8c45352d457c6e73ffa (diff) | |
download | cowboy-662f6af98269f78460cf6749f49f241156520e13.tar.gz cowboy-662f6af98269f78460cf6749f49f241156520e13.tar.bz2 cowboy-662f6af98269f78460cf6749f49f241156520e13.zip |
Correcting TransOpts in send_timeout_close tests
-rw-r--r-- | test/http2_SUITE.erl | 2 | ||||
-rw-r--r-- | test/http_SUITE.erl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/http2_SUITE.erl b/test/http2_SUITE.erl index d17508a..d3dc51a 100644 --- a/test/http2_SUITE.erl +++ b/test/http2_SUITE.erl @@ -449,8 +449,8 @@ graceful_shutdown_listener_timeout(Config) -> send_timeout_close(Config) -> doc("Check that connections are closed on send timeout."), TransOpts = #{ - port => 0, socket_opts => [ + {port, 0}, {send_timeout, 100}, {send_timeout_close, true}, {sndbuf, 10} diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl index 0325279..a752250 100644 --- a/test/http_SUITE.erl +++ b/test/http_SUITE.erl @@ -779,8 +779,8 @@ graceful_shutdown_listener(Config) -> send_timeout_close(_Config) -> doc("Check that connections are closed on send timeout."), TransOpts = #{ - port => 0, socket_opts => [ + {port, 0}, {send_timeout, 100}, {send_timeout_close, true}, {sndbuf, 10} |