mashirozx/mastodon

View on GitHub
app/workers/scheduler/pghero_scheduler.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

class Scheduler::PgheroScheduler
  include Sidekiq::Worker

  sidekiq_options retry: 0

  def perform
    PgHero.capture_space_stats
  end
end