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 <wangg...@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.<String, Long, KeyValueStore<Bytes, byte[]>>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 guozh...@apache.org.