【发布时间】:2011-05-25 01:07:32
【问题描述】:
我正在尝试使用 ruby rest-client 将大量图像上传到我正在编写的网站。我的代码如下所示:
RestClient.post url, :timeout => 90000000, :open_timeout => 90000000, :file_param => file_obj
但是,我收到了这个错误:
RestClient::RequestTimeout: Request Timeout
from /Library/Ruby/Gems/1.8/gems/rest-client-1.6.1/lib/restclient/request.rb:174:in `transmit'
from /Library/Ruby/
但是当我查看服务器日志时
Completed in 61493ms (View: 2, DB: 1) | 201 Created
因此,似乎没有任何原因导致超时。任何人都知道是否有我没有正确设置的超时参数?
谢谢
【问题讨论】: