counter: 1.1.0 - Only counts words (splitting is done separately now)
[demos/kafka/wordcount] / src / main / java / de / juplo / kafka / wordcount / counter / CounterApplicationProperties.java
index d670ba2..351ea18 100644 (file)
@@ -15,6 +15,6 @@ public class CounterApplicationProperties
 {
   private String bootstrapServer = "localhost:9092";
   private String applicationId = "counter";
-  private String inputTopic = "recordings";
+  private String inputTopic = "words";
   private String outputTopic = "countings";
 }