mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-23 18:02:59 +01:00
11 lines
207 B
Ruby
11 lines
207 B
Ruby
# 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
|