1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-26 09:32:57 -05:00
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