Skip to content

Instantly share code, notes, and snippets.

@dgtm
Created August 29, 2012 05:29
Show Gist options
  • Save dgtm/3507103 to your computer and use it in GitHub Desktop.
Save dgtm/3507103 to your computer and use it in GitHub Desktop.
def call(worker, msg, queue)
begin
if msg['retry_count'] && msg['retry_count'] >= @max_retries
.....
.....
else
yield
end
rescue => e
raise
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment