我还是 Ruby 的新手,我第一次尝试将 Timeout 用于某些 HTTP 函数,但显然我在某处遗漏了标记。我的代码在下面,但它不起作用。相反,它引发了以下异常:
C:/Ruby193/lib/ruby/1.9.1/net/http.rb:762:in `initialize': execution expired (Timeout::Error)
这对我来说没有多大意义,因为它超时的代码部分被包装在开始/救援/结束块中,并专门救援 Timeout::Error。我做错了什么,还是 Ruby 不支持的东西?
retries = 10
Timeout::timeout(5) do
begin
File.open("#{$temp}\\http.log", 'w') { |f|
http.request(request) do |str|
f.write str.body
end
}
rescue Timeout::Error
if retries > 0
print "Timeout - Retrying..."
retries -= 1
retry
else
puts "ERROR: Not responding after 10 retries! Giving up!")
exit
end
end
end