2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-06 13:05:03 +02:00
|
|
|
class DistributionWorker
|
2016-03-25 03:22:26 +01:00
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
def perform(status_id)
|
2017-04-05 21:41:50 +02:00
|
|
|
FanOutOnWriteService.new.call(Status.find(status_id))
|
2016-12-19 09:31:12 +01:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
2017-05-06 13:05:03 +02:00
|
|
|
true
|
2016-03-25 03:22:26 +01:00
|
|
|
end
|
|
|
|
end
|