2017-05-05 10:23:01 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Pubsubhubbub::SubscribeWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-09-14 23:12:43 +10:00
|
|
|
sidekiq_options queue: 'push', retry: 10, unique: :until_executed, dead: false
|
2017-07-11 02:04:23 +10:00
|
|
|
|
2019-07-07 07:26:16 +10:00
|
|
|
def perform(account_id); end
|
2017-05-05 10:23:01 +10:00
|
|
|
end
|