This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
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