mjsax commented on code in PR #17973:
URL: https://github.com/apache/kafka/pull/17973#discussion_r1879002762


##########
streams/src/main/java/org/apache/kafka/streams/StreamsBuilder.java:
##########
@@ -144,7 +144,7 @@ public synchronized <K, V> KStream<K, V> stream(final 
String topic,
      * @return a {@link KStream} for the specified topics
      */
     public synchronized <K, V> KStream<K, V> stream(final Collection<String> 
topics) {
-        return stream(topics, Consumed.with(null, null, null, null));
+        return stream(topics, Consumed.with(null, null));

Review Comment:
   With the new overload, compiler could not resolve this any longer -- 
switching the a different overload to fix it.



-- 
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]

Reply via email to