aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-11-27 10:30:25 +0900
committerGitHub <noreply@github.com>2017-11-27 10:30:25 +0900
commitad0630f0ae2d65bc0adda4097af8009a985b6f15 (patch)
treeac8f67af75f36826bb74cc09b78fa396d2f744ce /activerecord/CHANGELOG.md
parentb1f140ef2e5af605ea12d8ee1c932eaf728a398d (diff)
downloadrails-ad0630f0ae2d65bc0adda4097af8009a985b6f15.tar.gz
rails-ad0630f0ae2d65bc0adda4097af8009a985b6f15.tar.bz2
rails-ad0630f0ae2d65bc0adda4097af8009a985b6f15.zip
Rename `TransactionTimeout` to more descriptive `LockWaitTimeout` (#31223)
Since #31129, new error class `StatementTimeout` has been added. `TransactionTimeout` is caused by the timeout shorter than `StatementTimeout`, but its name is too generic. I think that it should be a name that understands the difference with `StatementTimeout`.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 217eada1d7..ccd2aa90e1 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -190,7 +190,7 @@
*Jeremy Green*
-* Add new error class `TransactionTimeout` which will be raised
+* Add new error class `LockWaitTimeout` which will be raised
when lock wait timeout exceeded.
*Gabriel Courtemanche*