chia7712 commented on code in PR #23461:
URL: https://github.com/apache/kafka/pull/23461#discussion_r4031722632
##########
streams/src/main/java/org/apache/kafka/streams/processor/internals/InternalTopologyBuilder.java:
##########
@@ -598,33 +598,25 @@ private void verifyParents(final String processorName,
final String... predecess
public final void addStateStore(final StoreBuilder<?> storeBuilder,
final String... processorNames) {
Objects.requireNonNull(storeBuilder, "storeBuilder cannot be null");
- addStateStore(StoreBuilderWrapper.wrapStoreBuilder(storeBuilder),
false, processorNames);
+ addStateStore(StoreBuilderWrapper.wrapStoreBuilder(storeBuilder),
processorNames);
}
public final void addStateStore(final StoreFactory storeFactory,
final String... processorNames) {
- addStateStore(storeFactory, false, processorNames);
- }
-
- public final void addStateStore(final StoreFactory storeFactory,
- final boolean allowOverride,
- final String... processorNames) {
Objects.requireNonNull(storeFactory, "stateStoreFactory cannot be
null");
Review Comment:
typo: `stateStoreFactory` -> `storeFactory`
--
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]