Skip to content

Commit d1dd6a6

Browse files
committed
feedback
1 parent 194ab63 commit d1dd6a6

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ TIPS_INGRESS_DUAL_WRITE_MEMPOOL=false
77
TIPS_INGRESS_KAFKA_BROKERS=localhost:9092
88
TIPS_INGRESS_KAFKA_TOPIC=tips-audit
99
TIPS_INGRESS_LOG_LEVEL=info
10+
TIPS_INGRESS_KAFKA_QUEUE_TOPIC=tips-ingress
1011

1112
# Audit service configuration
1213
TIPS_AUDIT_KAFKA_BROKERS=localhost:9092

crates/ingress/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)