ableegoldman commented on a change in pull request #8669: URL: https://github.com/apache/kafka/pull/8669#discussion_r426102608
########## File path: streams/src/test/java/org/apache/kafka/test/InternalMockProcessorContext.java ########## @@ -349,6 +353,27 @@ public Headers headers() { return recordContext.headers(); } + @Override + public TaskType taskType() { + return TaskType.ACTIVE; + } + + @Override + public void logChange(final String storeName, + final Bytes key, + final byte[] value, + final long timestamp) { + recordCollector().send( Review comment: I assumed this would be fine since it's pretty much what happened before (ie users of the context would get the record collector and then call send) but I'd like to get this confirmed ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org