mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-07 12:16:14 +00:00
13 lines
277 B
Ruby
13 lines
277 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FetchReplyWorker
|
|
include Sidekiq::Worker
|
|
include ExponentialBackoff
|
|
|
|
sidekiq_options queue: 'pull', retry: 3
|
|
|
|
def perform(child_url, options = {})
|
|
FetchRemoteStatusService.new.call(child_url, **options.symbolize_keys)
|
|
end
|
|
end
|