1
0
mirror of https://framagit.org/tykayn/mastodon.git synced 2023-08-25 08:33:12 +02:00
mastodon/app/workers/regeneration_worker.rb

15 lines
303 B
Ruby
Raw 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