mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
12 lines
237 B
Ruby
12 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
|