0
0
Fork 0

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

@ -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