This commit is contained in:
chrislu 2024-01-11 23:03:35 -08:00
parent 70a011a224
commit 45994641e9

View file

@ -34,7 +34,7 @@ func (manager *LocalTopicManager) AddTopicPartition(topic Topic, localPartition
localTopic.Partitions = append(localTopic.Partitions, localPartition) localTopic.Partitions = append(localTopic.Partitions, localPartition)
} }
// GetTopic gets a topic from the local topic manager // GetTopicPartition gets a topic from the local topic manager
func (manager *LocalTopicManager) GetTopicPartition(topic Topic, partition Partition) *LocalPartition { func (manager *LocalTopicManager) GetTopicPartition(topic Topic, partition Partition) *LocalPartition {
localTopic, ok := manager.topics.Get(topic.String()) localTopic, ok := manager.topics.Get(topic.String())
if !ok { if !ok {