mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 12:58:06 +01:00
12 lines
262 B
Ruby
12 lines
262 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Scheduler::InstanceRefreshScheduler
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
|
|
|
|
def perform
|
|
Instance.refresh
|
|
InstancesIndex.import if Chewy.enabled?
|
|
end
|
|
end
|