关于Ruby错误处理的小问题。我有一些大致类似于以下内容的代码:
urls.each do |url|
begin
threads << Thread.new(url) do |url|
page = open(url)
# some further processing of page
end
rescue
puts "Could not retrieve url"
end
threads.each { |thread| thread.join }
但是,当我运行此操作时,偶尔会遇到重定向的URL,从而产生以下错误:
/usr/lib/ruby/1.8/open-uri.rb:174:in `open_loop': redirection forbidden: // url goes here
from my_file.rb in 'join'
from my_file.rb in 'each'
最后两行引用包含threads.each块的代码行。
我只是想知道为什么我会遇到这个错误,因为我有一个开始救援块?在这里我是否有一些微妙的东西,可能与多线程有关?
答案 0 :(得分:1)
没关系,愚蠢的错误。我把begin..rescue块放在Thread.do块中,然后就可以了。