You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by mj...@apache.org on 2019/03/16 22:18:18 UTC

[kafka] branch 1.0 updated: KAFKA-7855: Kafka Streams Maven Archetype quickstart fails to compile out of the box (#6194)

This is an automated email from the ASF dual-hosted git repository.

mjsax pushed a commit to branch 1.0
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/1.0 by this push:
     new bc745af  KAFKA-7855: Kafka Streams Maven Archetype quickstart fails to compile out of the box (#6194)
bc745af is described below

commit bc745af6a7a640360a092d8bbde5f68b6ad637be
Author: Kristian Aurlien <au...@users.noreply.github.com>
AuthorDate: Sat Mar 16 03:51:20 2019 +0100

    KAFKA-7855: Kafka Streams Maven Archetype quickstart fails to compile out of the box (#6194)
    
    Reviewers: Guozhang Wang <gu...@confluent.io>, Matthias J. Sax <ma...@confluent.io>
---
 .../src/main/resources/archetype-resources/src/main/java/LineSplit.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streams/quickstart/java/src/main/resources/archetype-resources/src/main/java/LineSplit.java b/streams/quickstart/java/src/main/resources/archetype-resources/src/main/java/LineSplit.java
index ec40d2a..41b024b 100644
--- a/streams/quickstart/java/src/main/resources/archetype-resources/src/main/java/LineSplit.java
+++ b/streams/quickstart/java/src/main/resources/archetype-resources/src/main/java/LineSplit.java
@@ -55,7 +55,7 @@ public class LineSplit {
 
         /* ------- use the code below for Java 8 and uncomment the above ----
 
-        builder.stream("streams-plaintext-input")
+        builder.<String, String>stream("streams-plaintext-input")
                .flatMapValues(value -> Arrays.asList(value.split("\\W+")))
                .to("streams-linesplit-output");