This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-04 17:23:01 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Pubsubhubbub::SubscribeWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-09-14 06:12:43 -07:00
|
|
|
sidekiq_options queue: 'push', retry: 10, unique: :until_executed, dead: false
|
2017-07-10 09:04:23 -07:00
|
|
|
|
2019-07-06 14:26:16 -07:00
|
|
|
def perform(account_id); end
|
2017-05-04 17:23:01 -07:00
|
|
|
end
|