Remove queued_at value from pubsub payloads (#26173)
This commit is contained in:
parent
12a6cf569e
commit
317cd26fba
3 changed files with 3 additions and 4 deletions
|
@ -9,7 +9,7 @@ class PushConversationWorker
|
||||||
message = InlineRenderer.render(conversation, conversation.account, :conversation)
|
message = InlineRenderer.render(conversation, conversation.account, :conversation)
|
||||||
timeline_id = "timeline:direct:#{conversation.account_id}"
|
timeline_id = "timeline:direct:#{conversation.account_id}"
|
||||||
|
|
||||||
redis.publish(timeline_id, Oj.dump(event: :conversation, payload: message, queued_at: (Time.now.to_f * 1000.0).to_i))
|
redis.publish(timeline_id, Oj.dump(event: :conversation, payload: message))
|
||||||
rescue ActiveRecord::RecordNotFound
|
rescue ActiveRecord::RecordNotFound
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|
|
@ -9,7 +9,7 @@ class PushEncryptedMessageWorker
|
||||||
message = InlineRenderer.render(encrypted_message, nil, :encrypted_message)
|
message = InlineRenderer.render(encrypted_message, nil, :encrypted_message)
|
||||||
timeline_id = "timeline:#{encrypted_message.device.account_id}:#{encrypted_message.device.device_id}"
|
timeline_id = "timeline:#{encrypted_message.device.account_id}:#{encrypted_message.device.device_id}"
|
||||||
|
|
||||||
redis.publish(timeline_id, Oj.dump(event: :encrypted_message, payload: message, queued_at: (Time.now.to_f * 1000.0).to_i))
|
redis.publish(timeline_id, Oj.dump(event: :encrypted_message, payload: message))
|
||||||
rescue ActiveRecord::RecordNotFound
|
rescue ActiveRecord::RecordNotFound
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
|
|
@ -25,8 +25,7 @@ class PushUpdateWorker
|
||||||
def message
|
def message
|
||||||
Oj.dump(
|
Oj.dump(
|
||||||
event: update? ? :'status.update' : :update,
|
event: update? ? :'status.update' : :update,
|
||||||
payload: @payload,
|
payload: @payload
|
||||||
queued_at: (Time.now.to_f * 1000.0).to_i
|
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue