Method: ActiveJob::Core#exception_executions
- Defined in:
- activejob/lib/active_job/core.rb
#exception_executions ⇒ Object
Hash that contains the number of times this job handled errors for each specific retry_on declaration. Keys are the string representation of the exceptions listed in the retry_on declaration, while its associated value holds the number of executions where the corresponding retry_on declaration handled one of its listed exceptions.
37 38 39 |
# File 'activejob/lib/active_job/core.rb', line 37 def exception_executions @exception_executions end |