about summary refs log tree commit diff
path: root/streaming
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-09-24 15:31:03 +0200
committerGitHub <noreply@github.com>2017-09-24 15:31:03 +0200
commit909a6d4661fbc79419e396076467aec6251b7af4 (patch)
tree2f958ec6706718feabd5a1a8d1acce4f10074ea0 /streaming
parent3f3de3807552794b2b509d75c522a1713d80c3be (diff)
Fix streaming API double-JSON-encoding status IDs for deletes (#5069)
Diffstat (limited to 'streaming')
-rw-r--r--streaming/index.js2
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);