aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs
diff options
context:
space:
mode:
authorAidan Haran <aidanharan@Aidans-MacBook-Pro.local>2017-09-16 19:59:32 +0100
committerAidan Haran <aidanharan@Aidans-MacBook-Pro.local>2017-09-16 19:59:32 +0100
commit3291fa3630c456450f8c6a9b771f77c293d036cd (patch)
treed8b3a6311df9b233955209d6c33f0fa07c2c7285 /activejob/test/jobs
parent34956f7422798f27f8926544d58771042f6f1c3a (diff)
downloadrails-3291fa3630c456450f8c6a9b771f77c293d036cd.tar.gz
rails-3291fa3630c456450f8c6a9b771f77c293d036cd.tar.bz2
rails-3291fa3630c456450f8c6a9b771f77c293d036cd.zip
Allow for custom handling of exceptions that are discarded
Diffstat (limited to 'activejob/test/jobs')
-rw-r--r--activejob/test/jobs/retry_job.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activejob/test/jobs/retry_job.rb b/activejob/test/jobs/retry_job.rb
index a12d09779b..2b22186f0a 100644
--- a/activejob/test/jobs/retry_job.rb
+++ b/activejob/test/jobs/retry_job.rb
@@ -10,6 +10,7 @@ class ExponentialWaitTenAttemptsError < StandardError; end
class CustomWaitTenAttemptsError < StandardError; end
class CustomCatchError < StandardError; end
class DiscardableError < StandardError; end
+class CustomDiscardableError < StandardError; end
class RetryJob < ActiveJob::Base
retry_on DefaultsError
@@ -19,6 +20,7 @@ class RetryJob < ActiveJob::Base
retry_on CustomWaitTenAttemptsError, wait: ->(executions) { executions * 2 }, attempts: 10
retry_on(CustomCatchError) { |job, exception| JobBuffer.add("Dealt with a job that failed to retry in a custom way after #{job.arguments.second} attempts") }
discard_on DiscardableError
+ discard_on(CustomDiscardableError) { |job, exception| JobBuffer.add("Dealt with a job that was discarded in a custom way") }
def perform(raising, attempts)
if executions < attempts