aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ranch_acceptors_sup.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ranch_acceptors_sup.erl b/src/ranch_acceptors_sup.erl
index 064f283..9bc3947 100644
--- a/src/ranch_acceptors_sup.erl
+++ b/src/ranch_acceptors_sup.erl
@@ -103,6 +103,8 @@ hide_socket_opts([{cacerts, _}|SocketOpts]) ->
[{cacerts, '...'}|hide_socket_opts(SocketOpts)];
hide_socket_opts([{password, _}|SocketOpts]) ->
[{password, '...'}|hide_socket_opts(SocketOpts)];
+hide_socket_opts([{certs_keys, _}|SocketOpts]) ->
+ [{certs_keys, '...'}|hide_socket_opts(SocketOpts)];
hide_socket_opts([SocketOpt|SocketOpts]) ->
[SocketOpt|hide_socket_opts(SocketOpts)].