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 c32f7e6 MINOR: Fix expected output in Streams quickstart (#5280)
c32f7e6 is described below
commit c32f7e6ad8155915593f94bfb8bed4acf395d296
Author: Vahid Hashemian <vahidhashemian@us.ibm.com>
AuthorDate: Fri Jun 22 17:18:10 2018 -0700
MINOR: Fix expected output in Streams quickstart (#5280)
Reviewers: Guozhang Wang <wangguoz@gmail.com>
---
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 98871bf..5cbaf4d 100644
--- a/docs/streams/quickstart.html
+++ b/docs/streams/quickstart.html
@@ -165,7 +165,7 @@ The created topic can be described with the same <b>kafka-topics</b>
tool:
Topic:streams-plaintext-input PartitionCount:1 ReplicationFactor:1 Configs:
Topic: streams-plaintext-input Partition: 0 Leader: 0 Replicas: 0 Isr: 0
-Topic:streams-wordcount-output PartitionCount:1 ReplicationFactor:1 Configs:
+Topic:streams-wordcount-output PartitionCount:1 ReplicationFactor:1 Configs:cleanup.policy=compact
Topic: streams-wordcount-output Partition: 0 Leader: 0 Replicas: 0 Isr: 0
</pre>
@@ -372,10 +372,10 @@ $(function() {
var $navbar = $(".sub-nav-sticky"),
y_pos = $navbar.offset().top,
height = $navbar.height();
-
+
$(window).scroll(function() {
var scrollTop = $(window).scrollTop();
-
+
if (scrollTop > y_pos - height) {
$navbar.addClass("navbar-fixed")
} else if (scrollTop <= y_pos) {
|