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 decfb83  Add missing backslash (#4474)
decfb83 is described below

commit decfb834fbbc8ae1a718e083edc70f5f226ea43e
Author: Yu-Jhe <[email protected]>
AuthorDate: Sat Jan 27 02:14:10 2018 +0800

    Add missing backslash (#4474)
    
    There're missing backslash when running the quick start tutorial.
    
    Reviewers: Guozhang Wang <[email protected]>
---
 docs/streams/quickstart.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/streams/quickstart.html b/docs/streams/quickstart.html
index 7eeee3e..98871bf 100644
--- a/docs/streams/quickstart.html
+++ b/docs/streams/quickstart.html
@@ -219,7 +219,7 @@ This message will be processed by the Wordcount application 
and the following ou
 </p>
 
 <pre class="brush: bash;">
-&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092
+&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 \
     --topic streams-wordcount-output \
     --from-beginning \
     --formatter kafka.tools.DefaultMessageFormatter \
@@ -252,7 +252,7 @@ hello kafka streams
 In your other terminal in which the console consumer is running, you will 
observe that the WordCount application wrote new output data:
 
 <pre class="brush: bash;">
-&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092
+&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 \
     --topic streams-wordcount-output \
     --from-beginning \
     --formatter kafka.tools.DefaultMessageFormatter \
@@ -287,7 +287,7 @@ join kafka summit
 The <b>streams-wordcount-output</b> topic will subsequently show the 
corresponding updated word counts (see last three lines):
 
 <pre class="brush: bash;">
-&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092
+&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 \
     --topic streams-wordcount-output \
     --from-beginning \
     --formatter kafka.tools.DefaultMessageFormatter \

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to