Skip to content

Commit

Permalink
[INLONG-11434][DataProxy] Fix the message body of msgType=5 is incorr…
Browse files Browse the repository at this point in the history
…ect (#11435)

Co-authored-by: gosonzhang <[email protected]>
  • Loading branch information
gosonzhang and gosonzhang authored Oct 29, 2024
1 parent a6ccb74 commit b841be1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public Event encEventPackage(BaseSource source, Channel channel) {
}
byte[] record = new byte[singleMsgLen];
bodyBuffer.get(record);
inLongMsg.addMsg(mapJoiner.join(attrMap), bodyBuffer);
inLongMsg.addMsg(mapJoiner.join(attrMap), record);
calcCnt++;
}
if (calcCnt != this.msgCount) {
Expand Down

0 comments on commit b841be1

Please sign in to comment.