From commits-return-9464-apmail-kafka-commits-archive=kafka.apache.org@kafka.apache.org Fri May 4 16:54:11 2018 Return-Path: X-Original-To: apmail-kafka-commits-archive@www.apache.org Delivered-To: apmail-kafka-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5C50A18C46 for ; Fri, 4 May 2018 16:54:11 +0000 (UTC) Received: (qmail 42251 invoked by uid 500); 4 May 2018 16:54:06 -0000 Delivered-To: apmail-kafka-commits-archive@kafka.apache.org Received: (qmail 42208 invoked by uid 500); 4 May 2018 16:54:06 -0000 Mailing-List: contact commits-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list commits@kafka.apache.org Received: (qmail 42199 invoked by uid 99); 4 May 2018 16:54:06 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 May 2018 16:54:06 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id A2DCB852D5; Fri, 4 May 2018 16:54:05 +0000 (UTC) Date: Fri, 04 May 2018 16:54:05 +0000 To: "commits@kafka.apache.org" Subject: [kafka-site] branch asf-site updated: [KAFKA-6861] Missing ')' in Kafka Streams documentation (#139) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152545284560.5903.65366289894653849@gitbox.apache.org> From: guozhang@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: kafka-site X-Git-Refname: refs/heads/asf-site X-Git-Reftype: branch X-Git-Oldrev: 956ada1e71b397e64accfbc0859ff410c2a53a9c X-Git-Newrev: bd6878a7bc3b9599729d3ccaba6ae9fd9c952e28 X-Git-Rev: bd6878a7bc3b9599729d3ccaba6ae9fd9c952e28 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. guozhang pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/kafka-site.git The following commit(s) were added to refs/heads/asf-site by this push: new bd6878a [KAFKA-6861] Missing ')' in Kafka Streams documentation (#139) bd6878a is described below commit bd6878a7bc3b9599729d3ccaba6ae9fd9c952e28 Author: zer0Id0l AuthorDate: Fri May 4 09:54:01 2018 -0700 [KAFKA-6861] Missing ')' in Kafka Streams documentation (#139) Adding missing parentheses in the code snippet for Streams Word Count tutorial --- 10/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/10/tutorial.html b/10/tutorial.html index 7d75ed6..e7b5ea4 100644 --- a/10/tutorial.html +++ b/10/tutorial.html @@ -530,7 +530,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()));

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