mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
6cf57c6765
* Refactor how Redis locks are created * Fix autorelease duration on account deletion lock
16 lines
356 B
Ruby
16 lines
356 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DistributionWorker
|
|
include Sidekiq::Worker
|
|
include Redisable
|
|
include Lockable
|
|
|
|
def perform(status_id, options = {})
|
|
with_lock("distribute:#{status_id}") do
|
|
FanOutOnWriteService.new.call(Status.find(status_id), **options.symbolize_keys)
|
|
end
|
|
rescue ActiveRecord::RecordNotFound
|
|
true
|
|
end
|
|
end
|