0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-02 10:37:08 +00:00
mastodon/app/workers/scheduler/pghero_scheduler.rb
2021-03-15 11:17:43 +01:00

12 lines
174 B
Ruby

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