mjsax commented on code in PR #21580:
URL: https://github.com/apache/kafka/pull/21580#discussion_r2922705439
##########
streams/src/main/java/org/apache/kafka/streams/processor/internals/ProcessorContextImpl.java:
##########
@@ -181,7 +181,8 @@ public <S extends StateStore> S getStateStore(final String
name) {
}
final StateStore store = stateManager.store(name);
- return (S) wrapWithReadWriteStore(store);
+ final StateStore wrappedStore = wrapWithReadWriteStore(store);
+ return (S) wrappedStore;
Review Comment:
Why do we need this change and introduce `wrappedStore` ?
--
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]