mastodon/app/workers/scheduler/instance_refresh_scheduler.rb

11 lines
255 B
Ruby

# frozen_string_literal: true
class Scheduler::InstanceRefreshScheduler < ApplicationWorker
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
def perform
Instance.refresh
InstancesIndex.import if Chewy.enabled?
end
end