Remove queued_at value from pubsub payloads (#26173)

This commit is contained in:
Emelia Smith 2023-07-27 16:19:33 +02:00 committed by GitHub
parent 12a6cf569e
commit 317cd26fba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View file

@ -9,7 +9,7 @@ class PushConversationWorker
message = InlineRenderer.render(conversation, conversation.account, :conversation)
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
true
end

View file

@ -9,7 +9,7 @@ class PushEncryptedMessageWorker
message = InlineRenderer.render(encrypted_message, nil, :encrypted_message)
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
true
end

View file

@ -25,8 +25,7 @@ class PushUpdateWorker
def message
Oj.dump(
event: update? ? :'status.update' : :update,
payload: @payload,
queued_at: (Time.now.to_f * 1000.0).to_i
payload: @payload
)
end