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