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