"read would block OpenSSL::SSL::SSLError"
我正在尝试使用代码禁用验证 ssl
Koala.http_service.http_options = {
# Faraday options
:ssl => {
# see below for info on ca_path and ca_file
#:ca_file => file,
#:ca_path => path,
# SSL verify defaults to true unless you explicitly set it to false
:verify => false
}
}
但没有成功,同样的错误。
如何解决?为什么上面的代码被忽略了?