aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorArthur Nogueira Neves <arthurnn@gmail.com>2014-08-19 08:30:28 -0400
committerArthur Nogueira Neves <arthurnn@gmail.com>2014-08-19 08:30:28 -0400
commit31b3ae8e98ed9d1dc6233fee0917990a84ee32fb (patch)
treea7535fb562ce23dd8b2f0d5373157357b444f62b /activerecord
parentdb7b280be7a8e448da56b2380745ab54753b69fd (diff)
parent7a796b4c0a2676ed385ed84598888c9e22cb1258 (diff)
downloadrails-31b3ae8e98ed9d1dc6233fee0917990a84ee32fb.tar.gz
rails-31b3ae8e98ed9d1dc6233fee0917990a84ee32fb.tar.bz2
rails-31b3ae8e98ed9d1dc6233fee0917990a84ee32fb.zip
Merge pull request #16554 from y-yagi/patch-2
[ci skip] config.active_record.errors_in_transactional_callbacks -> config.active_record.raise_in_transactional_callbacks
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 372f4e210f..74f802f3f7 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -12,7 +12,7 @@
Example:
# For not swallow errors in after_commit/after_rollback callbacks.
- config.active_record.errors_in_transactional_callbacks = true
+ config.active_record.raise_in_transactional_callbacks = true
Fixes #13460.