From be199dfae2c5d405492ced877b63013c4789e275 Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Sun, 9 Oct 2016 08:46:31 +0900 Subject: correct exception class in `retry_on` example [ci skip] If the deadlock has occurred `ActiveRecord::Deadlocked` will raise. Ref: #25107, #26059 --- activejob/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activejob/CHANGELOG.md') diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 9bf397af14..ef62b2136b 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -16,13 +16,13 @@ class RemoteServiceJob < ActiveJob::Base retry_on CustomAppException # defaults to 3s wait, 5 attempts retry_on AnotherCustomAppException, wait: ->(executions) { executions * 2 } - retry_on ActiveRecord::StatementInvalid, wait: 5.seconds, attempts: 3 + retry_on ActiveRecord::Deadlocked, wait: 5.seconds, attempts: 3 retry_on Net::OpenTimeout, wait: :exponentially_longer, attempts: 10 discard_on ActiveJob::DeserializationError def perform(*args) # Might raise CustomAppException or AnotherCustomAppException for something domain specific - # Might raise ActiveRecord::StatementInvalid when a local db deadlock is detected + # Might raise ActiveRecord::Deadlocked when a local db deadlock is detected # Might raise Net::OpenTimeout when the remote service is down end end -- cgit v1.2.3