File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ TIPS_INGRESS_DUAL_WRITE_MEMPOOL=false
77TIPS_INGRESS_KAFKA_BROKERS = localhost:9092
88TIPS_INGRESS_KAFKA_TOPIC = tips-audit
99TIPS_INGRESS_LOG_LEVEL = info
10+ TIPS_INGRESS_KAFKA_QUEUE_TOPIC = tips-ingress
1011
1112# Audit service configuration
1213TIPS_AUDIT_KAFKA_BROKERS = localhost:9092
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ struct Config {
5555 #[ arg(
5656 long,
5757 env = "TIPS_INGRESS_KAFKA_QUEUE_TOPIC" ,
58- default_value = "transaction-queue "
58+ default_value = "tips-ingress "
5959 ) ]
6060 queue_topic : String ,
6161
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ services:
5555 command : |
5656 sh -c "
5757 kafka-topics --create --if-not-exists --topic tips-audit --bootstrap-server kafka:29092 --partitions 3 --replication-factor 1
58+ kafka-topics --create --if-not-exists --topic tips-ingress --bootstrap-server kafka:29092 --partitions 3 --replication-factor 1
5859 kafka-topics --list --bootstrap-server kafka:29092
5960 "
6061
You can’t perform that action at this time.
0 commit comments