Fix EDQS state topic prefix usage

This commit is contained in:
ViacheslavKlimov 2025-05-27 15:47:28 +03:00
parent 52d5e3f611
commit eaab758c20

View File

@ -150,7 +150,7 @@ public class EdqsProcessor implements TbQueueHandler<TbProtoQueueMsg<ToEdqsMsg>,
}
try {
Set<TopicPartitionInfo> newPartitions = event.getNewPartitions().get(new QueueKey(ServiceType.EDQS));
stateService.process(withTopic(newPartitions, config.getStateTopic()));
stateService.process(withTopic(newPartitions, topicService.buildTopicName(config.getStateTopic())));
// partitions for event and request consumers are updated by stateService
Set<TopicPartitionInfo> oldPartitions = event.getOldPartitions().get(new QueueKey(ServiceType.EDQS));