mjsax commented on code in PR #21684:
URL: https://github.com/apache/kafka/pull/21684#discussion_r2916127137
##########
streams/examples/src/test/java/org/apache/kafka/streams/examples/wordcount/WordCountProcessorTest.java:
##########
@@ -46,7 +66,66 @@ public void test() {
.withLoggingDisabled() // Changelog is not supported by
MockProcessorContext.
// Caching is disabled by default, but FYI: caching is also
not supported by MockProcessorContext.
.build();
- store.init(context.getStateStoreContext(), store);
+ store.init(
+ new AbstractProcessorContext<>(new TaskId(0, 0), new
StreamsConfig(context.appConfigs()), (StreamsMetricsImpl) context.metrics(),
null) {
Review Comment:
Seems this is related to https://issues.apache.org/jira/browse/KAFKA-19983
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]