I am using sidekiq
in rails4
.
How can I find failed jobs list and reprocesses them to perform in sidekiq
?
Asked
Active
Viewed 2.1k times
13
-
3I think this is what you want https://github.com/mhfs/sidekiq-failures – Pavan May 12 '14 at 11:48
2 Answers
9
See Sidekiq::RetrySet in sidekiq/api

Mike Perham
- 21,300
- 6
- 59
- 61
-
I am getting an error message for ArgumentError: An SMTP To address is required to send a message. Set the message smtp_envelope_to, to, cc, or bcc address. always . Most of the jobs are running but somtimes the jobs get failed due to SMTP. Can you please identify the issue? – Debadatt May 14 '14 at 07:07
-
1Irrespective of whether a job has been retried or not, we would like to know the failed jobs argument. I mean if on retry the job has succeeded the retry job will get cleared. However it will still remain in the failed job counter. So I dont think this is the way. – Surya Nov 26 '18 at 09:24