我看到这个警告:(UndefinedFunctionError) function :ssl.cipher_suites/0 is undefined or private我的应用程序因出现此警告而崩溃。我最近使用asdf升级了Elixir和Erlang。现在如何启动我的应用程序?
(UndefinedFunctionError) function :ssl.cipher_suites/0 is undefined or private
asdf
vfwfrxfs1#
This Erlang page表示:OTP 21中不建议使用的函数
在编写本报告时,我通过将函数调用更改为::ssl.cipher_suites(:all, :"tlsv1.3")参考:cipher_suites/23的Erlang手册
:ssl.cipher_suites(:all, :"tlsv1.3")
cipher_suites/23
1条答案
按热度按时间vfwfrxfs1#
This Erlang page表示:
OTP 21中不建议使用的函数
在编写本报告时,
我通过将函数调用更改为:
:ssl.cipher_suites(:all, :"tlsv1.3")
参考:
cipher_suites/23
的Erlang手册