Skip to content

Instantly share code, notes, and snippets.

@codesnik
Created December 28, 2011 08:47
Show Gist options
  • Save codesnik/1527149 to your computer and use it in GitHub Desktop.
Save codesnik/1527149 to your computer and use it in GitHub Desktop.
how to make several retries
def foo
puts "trying!"
do_something_exceptional
rescue RetriableException
retries ||= 5
retries -= 1
raise if retries.zero?
retry
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment