Fix: Kafka replication factor hardcoded to 1 and No health check endpoints

This commit is contained in:
voltsrage
2026-06-21 17:24:09 +08:00
parent a91d79f3cd
commit 0d0bba19e6
9 changed files with 176 additions and 7 deletions
@@ -35,7 +35,7 @@ public class KafkaTopicProvisioner : IHostedService
{
Name = name,
NumPartitions = _options.NumPartitions,
ReplicationFactor = 1
ReplicationFactor = _options.ReplicationFactor
}).ToList();
try