mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 21:08:07 +01:00
3917353645
* Fix single Redis connection being used across all Sidekiq threads * Fix tests
11 lines
233 B
Ruby
11 lines
233 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PrecomputeFeedService < BaseService
|
|
include Redisable
|
|
|
|
def call(account)
|
|
FeedManager.instance.populate_home(account)
|
|
ensure
|
|
redis.del("account:#{account.id}:regeneration")
|
|
end
|
|
end
|