1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-14 06:38:30 +09:00
whippy-edition/app/workers/scheduler/instance_refresh_scheduler.rb

12 lines
196 B
Ruby
Raw Normal View History

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