mastodon/app/workers/regeneration_worker.rb

15 lines
303 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2016-11-08 02:08:32 +01:00
class RegenerationWorker
include Sidekiq::Worker
sidekiq_options unique: :until_executed
def perform(account_id, _ = :home)
account = Account.find(account_id)
PrecomputeFeedService.new.call(account)
rescue ActiveRecord::RecordNotFound
true
2016-11-08 02:08:32 +01:00
end
end