aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-10-08 19:51:42 -0400
committerGitHub <noreply@github.com>2016-10-08 19:51:42 -0400
commit743dba533e40279e040f5013bc34e974948b6fc2 (patch)
treec62f2a4086c199324c2b6eec91f69f2bd797acdd /activejob
parentf977004cc656b9a59243ed0e1c4e1da844f1bdcf (diff)
parentbe199dfae2c5d405492ced877b63013c4789e275 (diff)
downloadrails-743dba533e40279e040f5013bc34e974948b6fc2.tar.gz
rails-743dba533e40279e040f5013bc34e974948b6fc2.tar.bz2
rails-743dba533e40279e040f5013bc34e974948b6fc2.zip
Merge pull request #26740 from y-yagi/update_retry_on_example
correct exception class in `retry_on` example [ci skip]
Diffstat (limited to 'activejob')
-rw-r--r--activejob/CHANGELOG.md4
1 files changed, 2 insertions, 2 deletions
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