This commit is contained in:
chrislu
2024-08-10 12:39:16 -07:00
parent 7438648d1c
commit b6fd1ff4ce
2 changed files with 7 additions and 4 deletions

View File

@@ -28,10 +28,7 @@ func (manager *LocalTopicManager) AddLocalPartition(topic Topic, localPartition
if !manager.topics.SetIfAbsent(topic.String(), localTopic) {
localTopic, _ = manager.topics.Get(topic.String())
}
if localTopic.findPartition(localPartition.Partition) != nil {
return
}
localTopic.Partitions = append(localTopic.Partitions, localPartition)
localTopic.AddPartition(localPartition)
}
// GetLocalPartition gets a topic from the local topic manager