ableegoldman commented on code in PR #17892: URL: https://github.com/apache/kafka/pull/17892#discussion_r1851702436
########## streams/src/main/java/org/apache/kafka/streams/Topology.java: ########## @@ -714,8 +714,10 @@ public org.apache.kafka.streams.processor.api.Processor<Object, Object, Object, public synchronized <KIn, VIn, KOut, VOut> Topology addProcessor(final String name, final ProcessorSupplier<KIn, VIn, KOut, VOut> supplier, final String... parentNames) { - internalTopologyBuilder.addProcessor(name, supplier, parentNames); - final Set<StoreBuilder<?>> stores = supplier.stores(); + final ProcessorSupplier<KIn, VIn, KOut, VOut> wrapped = internalTopologyBuilder.wrapProcessorSupplier(name, supplier); Review Comment: this is the entire implementation for PAPI apps -- 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