diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-09-24 15:31:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-24 15:31:03 +0200 |
commit | 909a6d4661fbc79419e396076467aec6251b7af4 (patch) | |
tree | 2f958ec6706718feabd5a1a8d1acce4f10074ea0 /streaming/index.js | |
parent | 3f3de3807552794b2b509d75c522a1713d80c3be (diff) |
Fix streaming API double-JSON-encoding status IDs for deletes (#5069)
Diffstat (limited to 'streaming/index.js')
-rw-r--r-- | streaming/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/index.js b/streaming/index.js index 3e80c8b30..017073fa1 100644 --- a/streaming/index.js +++ b/streaming/index.js @@ -264,7 +264,7 @@ const startWorker = (workerId) => { const transmit = () => { const now = new Date().getTime(); const delta = now - queued_at; - const encodedPayload = typeof payload === 'number' ? payload : JSON.stringify(payload); + const encodedPayload = typeof payload === 'object' ? JSON.stringify(payload) : payload; log.silly(req.requestId, `Transmitting for ${req.accountId}: ${event} ${encodedPayload} Delay: ${delta}ms`); output(event, encodedPayload); |