mirror of
https://github.com/glitch-soc/mastodon
synced 2025-09-16 05:21:12 +00:00
11 lines
173 B
Ruby
11 lines
173 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Scheduler::InstanceRefreshScheduler
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options retry: 0
|
|
|
|
def perform
|
|
Instance.refresh
|
|
end
|
|
end
|