File tree Expand file tree Collapse file tree
internal/venice-common/src/main/java/com/linkedin/venice/kafka/validation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -428,7 +428,6 @@ public ProducerPartitionState toProducerPartitionState() {
428428 */
429429 pps .aggregates = CollectionUtils .substituteEmptyMap (getAggregates ());
430430 pps .debugInfo = CollectionUtils .substituteEmptyMap (getDebugInfo ());
431- pps .checksumType = getCheckSumType ().getValue ();
432431 populateProducerPartitionState (pps );
433432 return pps ;
434433 }
@@ -439,6 +438,7 @@ public void populateProducerPartitionState(ProducerPartitionState pps) {
439438 * which is expensive. We should only invoke this closure when necessary.
440439 */
441440 pps .checksumState = ByteBuffer .wrap (getCheckSumState ());
441+ pps .checksumType = getCheckSumType ().getValue ();
442442 pps .segmentNumber = getSegmentNumber ();
443443 pps .messageSequenceNumber = getSequenceNumber ();
444444 pps .messageTimestamp = getLastRecordProducerTimestamp ();
You can’t perform that action at this time.
0 commit comments