mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 14:03:16 -08:00
* Fix Scheduler::SubscriptionsScheduler, add worker test for it * Change production log level of Sidekiq to "warn" instead of "info"
11 lines
223 B
Ruby
11 lines
223 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DistributionWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(status_id)
|
|
FanOutOnWriteService.new.call(Status.find(status_id))
|
|
rescue ActiveRecord::RecordNotFound
|
|
true
|
|
end
|
|
end
|