Skip to content

Commit 8178a67

Browse files
committed
Fix previous commit
1 parent c4d5f78 commit 8178a67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-kafka/src/main/java/org/springframework/kafka/support/converter/ConversionException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public ConversionException(String message, ConsumerRecord<?, ?> record, Throwabl
7474
*/
7575
public ConversionException(String message, List<ConsumerRecord<?, ?>> records, Throwable cause) {
7676
super(message, cause);
77-
this.record = record;
77+
this.record = null;
7878
this.records.addAll(records);
7979
this.message = null;
8080
}

0 commit comments

Comments
 (0)