Repository: kafka
Updated Branches:
  refs/heads/trunk 5f498855d -> 98928f7ad


Minor: Fix ps command example in docs

Process grep command has been updated. Previous "ps  | grep 
server-1.properties"  command is showing nothing.

Author: Satendra Kumar <[email protected]>

Reviewers: Gwen Shapira

Closes #1386 from satendrakumar06/patch-1


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/98928f7a
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/98928f7a
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/98928f7a

Branch: refs/heads/trunk
Commit: 98928f7ad0f556caf4b8ff4b212c946ce948d7d6
Parents: 5f49885
Author: Satendra Kumar <[email protected]>
Authored: Tue May 24 17:07:45 2016 -0700
Committer: Gwen Shapira <[email protected]>
Committed: Tue May 24 17:07:45 2016 -0700

----------------------------------------------------------------------
 docs/quickstart.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/98928f7a/docs/quickstart.html
----------------------------------------------------------------------
diff --git a/docs/quickstart.html b/docs/quickstart.html
index 4d4f7ea..5281f31 100644
--- a/docs/quickstart.html
+++ b/docs/quickstart.html
@@ -168,7 +168,7 @@ my test message 2
 
 Now let's test out fault-tolerance. Broker 1 was acting as the leader so let's 
kill it:
 <pre>
-&gt; <b>ps | grep server-1.properties</b>
+&gt; <b>ps aux | grep server-1.properties</b>
 <i>7564</i> ttys002    0:15.91 
/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home/bin/java...
 &gt; <b>kill -9 7564</b>
 </pre>
@@ -357,4 +357,4 @@ summit  1
 Here, the first column is the Kafka message key, and the second column is the 
message value, both in in <code>java.lang.String</code> format.
 Note that the output is actually a continuous stream of updates, where each 
data record (i.e. each line in the original output above) is
 an updated count of a single word, aka record key such as "kafka". For 
multiple records with the same key, each later record is an update of the 
previous one.
-</p>
\ No newline at end of file
+</p>

Reply via email to