Skip to content

Instantly share code, notes, and snippets.

@stereosupersonic
Created October 27, 2017 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stereosupersonic/752ec277d699fcf74f6e2638155bc873 to your computer and use it in GitHub Desktop.
Save stereosupersonic/752ec277d699fcf74f6e2638155bc873 to your computer and use it in GitHub Desktop.
Retry
begin
result = some_method
rescue MyApp::Exception => e
retries ||= 0
retries += 1
raise e if retries > 5
retry
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment