diff options
author | Ingela Anderton Andin <[email protected]> | 2016-12-06 18:20:14 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-01-19 10:24:58 +0100 |
commit | c6472824546dc8e6914139c2443b926d3f0945cc (patch) | |
tree | 1bb73fadd7fb0245dca92f11d87edfe2fb2b68bc /lib/ssl/test/ssl_pem_cache_SUITE.erl | |
parent | a44947369f44cb334ca45dbecca2e3f878af8229 (diff) | |
download | otp-c6472824546dc8e6914139c2443b926d3f0945cc.tar.gz otp-c6472824546dc8e6914139c2443b926d3f0945cc.tar.bz2 otp-c6472824546dc8e6914139c2443b926d3f0945cc.zip |
ssl: Move PEM cache to a dedicated process
The PEM cache handling has proven to be too disruptive of the manager process.
Diffstat (limited to 'lib/ssl/test/ssl_pem_cache_SUITE.erl')
-rw-r--r-- | lib/ssl/test/ssl_pem_cache_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/test/ssl_pem_cache_SUITE.erl b/lib/ssl/test/ssl_pem_cache_SUITE.erl index f10d27fbc6..96b15d9b51 100644 --- a/lib/ssl/test/ssl_pem_cache_SUITE.erl +++ b/lib/ssl/test/ssl_pem_cache_SUITE.erl @@ -82,8 +82,8 @@ pem_cleanup() -> [{doc, "Test pem cache invalidate mechanism"}]. pem_cleanup(Config)when is_list(Config) -> process_flag(trap_exit, true), - ClientOpts = proplists:get_value(client_opts, Config), - ServerOpts = proplists:get_value(server_opts, Config), + ClientOpts = proplists:get_value(client_verification_opts, Config), + ServerOpts = proplists:get_value(server_verification_opts, Config), {ClientNode, ServerNode, Hostname} = ssl_test_lib:run_where(Config), Server = |