1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-13 22:23:48 -05:00

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