This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-10-09 19:35:14 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Scheduler::PgheroScheduler
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2023-08-03 11:04:05 +02:00
|
|
|
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
|
2018-10-09 19:35:14 +02:00
|
|
|
|
|
|
|
def perform
|
|
|
|
PgHero.capture_space_stats
|
|
|
|
end
|
|
|
|
end
|