aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs
diff options
context:
space:
mode:
Diffstat (limited to 'activejob/test/jobs')
-rw-r--r--activejob/test/jobs/retry_job.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/activejob/test/jobs/retry_job.rb b/activejob/test/jobs/retry_job.rb
index 2e05f95bf6..91be37f106 100644
--- a/activejob/test/jobs/retry_job.rb
+++ b/activejob/test/jobs/retry_job.rb
@@ -1,14 +1,14 @@
require_relative '../support/job_buffer'
require 'active_support/core_ext/integer/inflections'
-class SeriousError < StandardError; end
-class VerySeriousError < StandardError; end
-class NotSeriousError < StandardError; end
+class DefaultsError < StandardError; end
+class ShortWaitTenAttemptsError < StandardError; end
+class DiscardableError < StandardError; end
class RetryJob < ActiveJob::Base
- retry_on SeriousError
- retry_on VerySeriousError, wait: 1.second, attempts: 10
- discard_on NotSeriousError
+ retry_on DefaultsError
+ retry_on ShortWaitTenAttemptsError, wait: 1.second, attempts: 10
+ discard_on DiscardableError
def perform(raising, attempts)
if executions < attempts