Skip to content
Snippets Groups Projects
Commit 9a1bcc4e authored by Björn Vonheiden's avatar Björn Vonheiden
Browse files

Rearange topics in uc2

The topic feedback topic and output topic were interchanged.
This not changes any functionality in execution but confuses.
parent 23a13526
Branches
Tags
1 merge request!77Rearange topics in uc2
......@@ -60,9 +60,9 @@ public class TopologyBuilder {
final Duration emitPeriod, final Duration gracePeriod,
final SchemaRegistryAvroSerdeFactory srAvroSerdeFactory) {
this.inputTopic = inputTopic;
this.outputTopic = outputTopic;
this.feedbackTopic = feedbackTopic;
this.configurationTopic = configurationTopic;
this.outputTopic = outputTopic;
this.emitPeriod = emitPeriod;
this.gracePeriod = gracePeriod;
......
......@@ -60,8 +60,8 @@ public class Uc2KafkaStreamsBuilder extends KafkaStreamsBuilder { // NOPMD build
final TopologyBuilder topologyBuilder = new TopologyBuilder(
this.inputTopic,
this.feedbackTopic,
this.outputTopic,
this.feedbackTopic,
this.configurationTopic,
this.emitPeriod == null ? EMIT_PERIOD_DEFAULT : this.emitPeriod,
this.gracePeriod == null ? GRACE_PERIOD_DEFAULT : this.gracePeriod,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment