mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
13 lines
237 B
Ruby
13 lines
237 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class FetchReplyWorker
|
||
|
include Sidekiq::Worker
|
||
|
include ExponentialBackoff
|
||
|
|
||
|
sidekiq_options queue: 'pull', retry: 3
|
||
|
|
||
|
def perform(child_url)
|
||
|
FetchRemoteStatusService.new.call(child_url)
|
||
|
end
|
||
|
end
|