method
retry_stopped
v7.0.0 -
Show latest stable
- Class:
ActiveJob::LogSubscriber
retry_stopped(event)public
No documentation available.
# File activejob/lib/active_job/log_subscriber.rb, line 85
def retry_stopped(event)
job = event.payload[:job]
ex = event.payload[:error]
error do
"Stopped retrying #{job.class} due to a #{ex.class}, which reoccurred on #{job.executions} attempts."
end
end