1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-01 20:59:38 +00:00
mastodon/app/workers/scheduler/pghero_scheduler.rb

12 lines
219 B
Ruby

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