Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Sep 5, 2024
1 parent 2a5264f commit 9e185d7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,9 @@ export const parseKafkaBatch = async (
}

for (const [windowId, events] of Object.entries(parsedMessage.eventsByWindowId)) {
existingMessage.eventsByWindowId[windowId] = (existingMessage.eventsByWindowId[windowId] || []).concat(events)
existingMessage.eventsByWindowId[windowId] = (existingMessage.eventsByWindowId[windowId] || []).concat(
events
)
}

existingMessage.metadata.rawSize += parsedMessage.metadata.rawSize
Expand Down

0 comments on commit 9e185d7

Please sign in to comment.