about summary refs log tree commit diff
path: root/app/workers/concerns/exponential_backoff.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/concerns/exponential_backoff.rb')
-rw-r--r--app/workers/concerns/exponential_backoff.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/concerns/exponential_backoff.rb b/app/workers/concerns/exponential_backoff.rb
index f2b931e33..7626b2151 100644
--- a/app/workers/concerns/exponential_backoff.rb
+++ b/app/workers/concerns/exponential_backoff.rb
@@ -5,7 +5,7 @@ module ExponentialBackoff
 
   included do
     sidekiq_retry_in do |count|
-      15 + 10 * (count**4) + rand(10 * (count**4))
+      15 + (10 * (count**4)) + rand(10 * (count**4))
     end
   end
 end