mashirozx/mastodon

View on GitHub
app/workers/concerns/exponential_backoff.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module ExponentialBackoff
  extend ActiveSupport::Concern

  included do
    sidekiq_retry_in do |count|
      15 + 10 * (count**4) + rand(10 * (count**4))
    end
  end
end