about summary refs log tree commit diff
path: root/app/workers/pubsubhubbub/subscribe_worker.rb
blob: b861b5e67a1856d74fac071e537b97e40e4bcb50 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class Pubsubhubbub::SubscribeWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'push', retry: 10, unique: :until_executed, dead: false

  def perform(account_id); end
end