mastodon/app/workers/scheduler/follow_recommendations_sche...

11 lines
256 B
Ruby

# frozen_string_literal: true
class Scheduler::FollowRecommendationsScheduler < ApplicationWorker
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
def perform
AccountSummary.refresh
FollowRecommendation.refresh
end
end