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