Skip to content

Instantly share code, notes, and snippets.

@gnomex
Created August 15, 2020 23:11
Show Gist options
  • Save gnomex/7d6d3fd3679ed3d94600b20b98a6f56d to your computer and use it in GitHub Desktop.
Save gnomex/7d6d3fd3679ed3d94600b20b98a6f56d to your computer and use it in GitHub Desktop.
tries ||= 0
begin
# some code
rescue => e
return if tries >= max_retries
tries += 1
retry
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment