aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/CHANGELOG.md
diff options
context:
space:
mode:
authorPatrik Bóna <patrik.bona@mrhead.sk>2019-04-12 17:24:05 +0200
committerPatrik Bóna <patrik.bona@mrhead.sk>2019-04-12 17:47:08 +0200
commit3a7fa10603b6842251a6e8b22c302253ae7999ab (patch)
treefa7654e2edcafae7194c0385740a51bbcb30c6a7 /activejob/CHANGELOG.md
parentef0c5fe0d98ad1b1b27fe3d6d19ae62aed3e8aa1 (diff)
downloadrails-3a7fa10603b6842251a6e8b22c302253ae7999ab.tar.gz
rails-3a7fa10603b6842251a6e8b22c302253ae7999ab.tar.bz2
rails-3a7fa10603b6842251a6e8b22c302253ae7999ab.zip
Use individual execution counters when calculating retry delay
Individual execution counters were introduced in #34352. However `#determine_delay` which is used to calculate retry delay still uses the global counter. This commit fixes it.
Diffstat (limited to 'activejob/CHANGELOG.md')
-rw-r--r--activejob/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md
index 138c8a8ef4..c4e21b48ac 100644
--- a/activejob/CHANGELOG.md
+++ b/activejob/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Use individual execution counters when calculating retry delay.
+
+ *Patrik Bóna*
+
* Make job argument assertions with `Time`, `ActiveSupport::TimeWithZone`, and `DateTime` work by dropping microseconds. Microsecond precision is lost during serialization.
*Gannon McGibbon*