jeqo commented on a change in pull request #11213: URL: https://github.com/apache/kafka/pull/11213#discussion_r703713785
########## File path: streams/src/main/java/org/apache/kafka/streams/kstream/internals/suppress/KTableSuppressProcessorSupplier.java ########## @@ -198,7 +201,7 @@ private void emit(final TimeOrderedKeyValueBuffer.Eviction<K, V> toEmit) { final ProcessorRecordContext prevRecordContext = internalProcessorContext.recordContext(); internalProcessorContext.setRecordContext(toEmit.recordContext()); try { - internalProcessorContext.forward(toEmit.key(), toEmit.value()); + internalProcessorContext.forward(toEmit.record()); Review comment: It does, yet. I just tested in one of the methods. Adding the change and updating a test to cover this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org