Kafka: fix create topic

This commit is contained in:
pavelbannov 2021-08-13 11:09:01 +03:00
parent 508bb59f0f
commit 86248a3ad1

View File

@ -128,7 +128,9 @@ namespace ASC.Common.Caching
{
new TopicSpecification
{
Name = channelName
Name = channelName,
NumPartitions = 1,
ReplicationFactor = 1
}
}).Wait();
}