fix(batch): 修复封装大小顺序问题

This commit is contained in:
doufenghu
2020-10-23 22:06:36 +08:00
parent 13679476bd
commit 8a780334af

View File

@@ -796,8 +796,8 @@ public class HttpClientUtil {
outAvro.close();
outAvro = null;
}
dataLengthByteArray = sumHex(resultArray.length, 4);
resultArray = getTagRecordAndMergeAllArray(topic, dataJson, resultArray);
dataLengthByteArray = sumHex(resultArray.length, 4);
if (results == null) {
results = byteMerger(dataLengthByteArray, resultArray);
} else {