In `ProducerBatch.tryAppendForSplit`, invoking `this.recordsBuilder.append(timestamp, key, value);` missed the header information in the ProducerRecord. Should invoke this like :
`this.recordsBuilder.append(timestamp, key, value, headers);`
- links to