By pushing this into a worker we can reduce the amount of time the feed manager using workers eat up a connection
parent
825da6c758
commit
de1bb4bd56
@ -0,0 +1,13 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class PushUpdateWorker
|
||||||
|
include Sidekiq::Worker
|
||||||
|
|
||||||
|
def perform(timeline, account_id, status_id)
|
||||||
|
account = Account.find(account_id)
|
||||||
|
status = Status.find(status_id)
|
||||||
|
message = inline_render(account, 'api/v1/statuses/show', status)
|
||||||
|
|
||||||
|
broadcast(account_id, type: 'update', timeline: timeline, message: message)
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in new issue