Skip to content

Instantly share code, notes, and snippets.

Created September 27, 2013 17:44
Show Gist options
  • Save anonymous/8cb1ad03a4bcf2e53f98 to your computer and use it in GitHub Desktop.
Save anonymous/8cb1ad03a4bcf2e53f98 to your computer and use it in GitHub Desktop.
begin
tries ||=3
@review = MyModel.get(params[:id]) if params[:id]
rescue DataObjects::ConnectError => e
retry unless(tries -= 1).zero?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment