b5ac61b2c5
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
13 lines
263 B
Ruby
13 lines
263 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Scheduler::FollowRecommendationsScheduler
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options retry: 0, lock: :until_executed, lock_ttl: 1.day.to_i
|
|
|
|
def perform
|
|
AccountSummary.refresh
|
|
FollowRecommendation.refresh
|
|
end
|
|
end
|