This repository has been archived on 2024-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/workers/regeneration_worker.rb

15 lines
303 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-11-07 20:08:32 -05: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-07 20:08:32 -05:00
end
end