作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用最新版本的 rest-client gem 并且在外部访问时我看到很多 RestClient::ServerBrokeConnection 错误,我应该如何处理?
以下调用失败
response = RestClient::Request.execute(method: :post, url: url, headers: headers, "Content-Type" => "application/x-www-form-urlencoded")
最佳答案
当服务器断开与客户端的连接时会发生此错误。您可以决定重试请求或只是冒泡错误让用户了解并处理它。
因为rest-client 如何处理断开的连接,如图here ,你所能做的就是从中拯救
begin
response = RestClient::Request.execute(method: :post, url: url, headers: headers, "Content-Type" => "application/x-www-form-urlencoded")
rescue RestClient::ServerBrokeConnection
// retry or do something
end
关于ruby-on-rails - 如何处理 RestClient::ServerBrokeConnection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27350747/
我正在使用最新版本的 rest-client gem 并且在外部访问时我看到很多 RestClient::ServerBrokeConnection 错误,我应该如何处理? 以下调用失败 respon
我是一名优秀的程序员,十分优秀!