aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2016-12-06 18:20:14 +0100
committerIngela Anderton Andin <[email protected]>2017-01-19 10:24:58 +0100
commitc6472824546dc8e6914139c2443b926d3f0945cc (patch)
tree1bb73fadd7fb0245dca92f11d87edfe2fb2b68bc /lib/ssl/src/ssl.erl
parenta44947369f44cb334ca45dbecca2e3f878af8229 (diff)
downloadotp-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/src/ssl.erl')
-rw-r--r--lib/ssl/src/ssl.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl.erl b/lib/ssl/src/ssl.erl
index 0b7229b67e..4a5a7e25ea 100644
--- a/lib/ssl/src/ssl.erl
+++ b/lib/ssl/src/ssl.erl
@@ -577,7 +577,7 @@ prf(#sslsocket{pid = {Listen,_}}, _,_,_,_) when is_port(Listen) ->
%% Description: Clear the PEM cache
%%--------------------------------------------------------------------
clear_pem_cache() ->
- ssl_manager:clear_pem_cache().
+ ssl_pem_cache:clear().
%%---------------------------------------------------------------
-spec format_error({error, term()}) -> list().