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-08-21 13:56:33 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Scheduler::SubscriptionsCleanupScheduler
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2018-08-25 04:28:07 -07:00
|
|
|
sidekiq_options unique: :until_executed, retry: 0
|
2018-08-19 06:48:29 -07:00
|
|
|
|
2019-07-20 19:08:00 -07:00
|
|
|
def perform; end
|
2017-08-21 13:56:33 -07:00
|
|
|
end
|