mastodon/app/workers/scheduler/pghero_scheduler.rb

10 lines
212 B
Ruby

# frozen_string_literal: true
class Scheduler::PgheroScheduler < ApplicationWorker
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
def perform
PgHero.capture_space_stats
end
end