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