1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/workers/regeneration_worker.rb

20 lines
451 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-11-07 17:08:32 -08:00
class RegenerationWorker
include Sidekiq::Worker
sidekiq_options lock: :until_executed
def perform(account_id, _ = :home)
ApplicationRecord.connected_to(role: :primary) do
@account = Account.find(account_id)
end
ApplicationRecord.connected_to(role: :read, prevent_writes: true) do
PrecomputeFeedService.new.call(@account)
end
rescue ActiveRecord::RecordNotFound
true
2016-11-07 17:08:32 -08:00
end
end