mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
82aaedec46
make regeneration worker unique, (only schedule/execute once at a time)
12 lines
273 B
Ruby
12 lines
273 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RegenerationWorker
|
|
include Sidekiq::Worker
|
|
|
|
sidekiq_options queue: 'pull', backtrace: true, unique: :until_executed
|
|
|
|
def perform(account_id, _ = :home)
|
|
PrecomputeFeedService.new.call(:home, Account.find(account_id))
|
|
end
|
|
end
|