1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-01 12:58:18 +00:00
mastodon/app/workers/scheduler/instance_refresh_scheduler.rb
2021-03-15 11:17:43 +01:00

12 lines
173 B
Ruby

# frozen_string_literal: true
class Scheduler::InstanceRefreshScheduler
include Sidekiq::Worker
sidekiq_options retry: 0
def perform
Instance.refresh
end
end