Browse Source

MINOR: Fix a wrong description in PipeDemo's javadoc (#6901)

This PR fixes a wrong input stream name in PipeDemo's javadoc.

Reviewers: Kamal Chandraprakash <kamal.chandraprakash@gmail.com>, Jason Gustafson <jason@confluent.io>
pull/6237/head
Kengo Seki 5 years ago committed by Jason Gustafson
parent
commit
41e1c13a52
  1. 2
      streams/examples/src/main/java/org/apache/kafka/streams/examples/pipe/PipeDemo.java

2
streams/examples/src/main/java/org/apache/kafka/streams/examples/pipe/PipeDemo.java

@ -29,7 +29,7 @@ import java.util.concurrent.CountDownLatch; @@ -29,7 +29,7 @@ import java.util.concurrent.CountDownLatch;
* Demonstrates, using the high-level KStream DSL, how to read data from a source (input) topic and how to
* write data to a sink (output) topic.
*
* In this example, we implement a simple "pipe" program that reads from a source topic "streams-file-input"
* In this example, we implement a simple "pipe" program that reads from a source topic "streams-plaintext-input"
* and writes the data as-is (i.e. unmodified) into a sink topic "streams-pipe-output".
*
* Before running this example you must create the input topic and the output topic (e.g. via

Loading…
Cancel
Save