diff options
author | Ingela Anderton Andin <[email protected]> | 2015-09-21 15:23:06 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-09-21 15:23:06 +0200 |
commit | d3f16a3688d920622c988a3b49bb3f9ba37d9958 (patch) | |
tree | 5e4bdc0408fd71b5ae579d407906534a9b4ff4e7 /lib/ssl/test | |
parent | 8a84e8ec16df01fcd37e61f2cf22c4b17178507a (diff) | |
download | otp-d3f16a3688d920622c988a3b49bb3f9ba37d9958.tar.gz otp-d3f16a3688d920622c988a3b49bb3f9ba37d9958.tar.bz2 otp-d3f16a3688d920622c988a3b49bb3f9ba37d9958.zip |
ssl: listen socket should be set to active false
Diffstat (limited to 'lib/ssl/test')
-rw-r--r-- | lib/ssl/test/ssl_session_cache_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/test/ssl_session_cache_SUITE.erl b/lib/ssl/test/ssl_session_cache_SUITE.erl index 0738869f2b..924898f6fa 100644 --- a/lib/ssl/test/ssl_session_cache_SUITE.erl +++ b/lib/ssl/test/ssl_session_cache_SUITE.erl @@ -143,8 +143,8 @@ client_unique_session(Config) when is_list(Config) -> Server = ssl_test_lib:start_server([{node, ServerNode}, {port, 0}, {from, self()}, - {from, self()}, {mfa, {ssl_test_lib, no_result, []}}, + {tcp_options, [{active, false}]}, {options, ServerOpts}]), Port = ssl_test_lib:inet_port(Server), LastClient = clients_start(Server, |