Skip to content

Instantly share code, notes, and snippets.

@norbajunior
Created February 16, 2011 23:45
Show Gist options
  • Save norbajunior/830574 to your computer and use it in GitHub Desktop.
Save norbajunior/830574 to your computer and use it in GitHub Desktop.
Exemplo de onde se usaria o retry junto com a cláusula rescue.
require 'open-uri'
tries = 0
begin
tries += 1
open("http://norbaoliveira.com") { |f| puts f.readlines }
rescue OpenURI::HTTPError => e
puts e.message
if tries < 4
sleep(2**tries)
retry
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment