mastodon/app/workers/fetch_reply_worker.rb
2025-05-02 22:16:04 -07:00

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