From 08a92d47b08b25356b8bfea31c91ceb68cfae3ee Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 1 Aug 2016 16:09:16 -0700 Subject: Use descriptive exception names --- activejob/test/jobs/retry_job.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'activejob/test/jobs') 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 -- cgit v1.2.3