0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2024-12-03 20:14:04 +00:00
mastodon/app/workers/scheduler/pghero_scheduler.rb

12 lines
199 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Scheduler::PgheroScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed, retry: 0
def perform
PgHero.capture_space_stats
end
end