prod fixes

This commit is contained in:
2026-04-01 21:50:41 -04:00
parent 8e2cbd40de
commit 9cbc42c73f
3 changed files with 1 additions and 3 deletions

View File

@@ -14,7 +14,6 @@ supported_exchanges:
# Kafka configuration
kafka_brokers:
- kafka:9092
kafka_topic: market-ohlc
# Worker configuration
max_concurrent: 10

View File

@@ -14,7 +14,6 @@ supported_exchanges:
# Kafka configuration
kafka_brokers:
- kafka:9092
kafka_topic: market-0
# Worker configuration
max_concurrent: 10

View File

@@ -56,7 +56,7 @@ function loadConfig() {
// Kafka configuration
kafka_brokers: config.kafka_brokers || ['localhost:9092'],
kafka_topic: config.kafka_topic || 'market-0',
kafka_topic: 'market-ohlc',
// Worker configuration
max_concurrent: config.max_concurrent || 10,