resque-retry icon indicating copy to clipboard operation
resque-retry copied to clipboard

A resque plugin; provides retry, delay and exponential backoff support for resque jobs.

Results 6 resque-retry issues
Sort by recently updated
recently updated
newest added

retry_criteria_check methods are not triggered if both @retry_exceptions and @fatal_exceptions are nil per lines: https://github.com/lantins/resque-retry/blob/v1.5.0/lib/resque/plugins/retry.rb#L275 https://github.com/lantins/resque-retry/blob/v1.5.0/lib/resque/plugins/retry.rb#L199 This case seems like a common one (defining a criteria check method without whitelisting...

At work, we are using a `ResqueBase` class that all of our Resque jobs derive from. It would be great to be able to configure some resque-retry information there, so...

When I open the retry page on resque-web, I can see 67 pages of "retry" jobs. But these aren't actually retry jobs, they're the same delayed jobs I see on...

Bug - Should Fix

If the arity of the callback is not right, then an ArgumentError: wrong number of arguments gets thrown, but `instance_exec` swallows all exceptions so basically the effect is that the...

Bug - Should Fix
Needs Discussion

In order to only run certain logic when the job is retried a specific amount of times, I need to know the retry instance that's begin run. So let's say...

Discovered a hairy issue! It involved a couple moving parts: 1. We had a job that was always raising a particular exception in `perform` due to some bad data. 2....