1 2 3 4 5 6 7 8 9 10 11 12
# 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