aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/retry_job.rb
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-01-23 17:07:25 -0500
committerGitHub <noreply@github.com>2018-01-23 17:07:25 -0500
commit4cfd40a5802c7db8d7a6b4f0a9d072f09bfcdbf6 (patch)
treefc1c60ce1c407dd649dd60a23c2a76c9afe5f90d /activejob/test/jobs/retry_job.rb
parent0af36c62a5710e023402e37b019ad9982e69de4b (diff)
parent66f34a8ea58c8c98d9cc2651d386c9e5a0789d08 (diff)
downloadrails-4cfd40a5802c7db8d7a6b4f0a9d072f09bfcdbf6.tar.gz
rails-4cfd40a5802c7db8d7a6b4f0a9d072f09bfcdbf6.tar.bz2
rails-4cfd40a5802c7db8d7a6b4f0a9d072f09bfcdbf6.zip
Merge pull request #30622 from aidanharan/custom-discarded-job-handling
Allow for custom handling of exceptions that are discarded
Diffstat (limited to 'activejob/test/jobs/retry_job.rb')
-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 9aa99d9a21..82b80fe12b 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. Message: #{exception.message}") }
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