mirror of https://github.com/apache/kafka.git
KAFKA-7855: Kafka Streams Maven Archetype quickstart fails to compile out of the box (#6194)
Reviewers: Guozhang Wang <guozhang@confluent.io>, Matthias J. Sax <matthias@confluent.io>
This commit is contained in:
parent
e1961b8298
commit
fd5c0849e1
|
@ -44,7 +44,7 @@ public class LineSplit {
|
|||
|
||||
final StreamsBuilder builder = new StreamsBuilder();
|
||||
|
||||
builder.stream("streams-plaintext-input")
|
||||
builder.<String, String>stream("streams-plaintext-input")
|
||||
.flatMapValues(value -> Arrays.asList(value.split("\\W+")))
|
||||
.to("streams-linesplit-output");
|
||||
|
||||
|
|
Loading…
Reference in New Issue