You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gu...@apache.org on 2018/05/04 16:59:49 UTC

[kafka] branch trunk updated: HOTFIX: fix streams tutorial code example

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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new de8a67b  HOTFIX: fix streams tutorial code example
de8a67b is described below

commit de8a67b56534e37ae149423aac43097645029ce0
Author: Guozhang Wang <wa...@gmail.com>
AuthorDate: Fri May 4 09:59:36 2018 -0700

    HOTFIX: fix streams tutorial code example
---
 docs/streams/tutorial.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/streams/tutorial.html b/docs/streams/tutorial.html
index f390b6d..21ff030 100644
--- a/docs/streams/tutorial.html
+++ b/docs/streams/tutorial.html
@@ -532,7 +532,7 @@
               .groupBy((key, value) -> value)
               .count(Materialized.&lt;String, Long, KeyValueStore&lt;Bytes, byte[]&gt;&gt;as("counts-store"))
               .toStream()
-              .to("streams-wordcount-output", Produced.with(Serdes.String(), Serdes.Long());
+              .to("streams-wordcount-output", Produced.with(Serdes.String(), Serdes.Long()));
     </pre>
 
     <p>

-- 
To stop receiving notification emails like this one, please contact
guozhang@apache.org.