blob: 765cd76c8e296df1ee16af48dd0b39c2690b2fd4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# frozen_string_literal: true
class DistributionWorker
include Sidekiq::Worker
def perform(status_id, only_to_self = false)
RedisLock.acquire(redis: Redis.current, key: "distribute:#{status_id}") do |lock|
if lock.acquired?
status = Status.find(status_id)
FanOutOnWriteService.new.call(status, only_to_self: !status.published? || only_to_self)
else
raise Mastodon::RaceConditionError
end
end
rescue ActiveRecord::RecordNotFound
true
end
end
|