kevin-wu24 commented on code in PR #20242: URL: https://github.com/apache/kafka/pull/20242#discussion_r2301918193
########## metadata/src/main/java/org/apache/kafka/image/TopicsDelta.java: ########## @@ -136,6 +136,7 @@ public String replay(RemoveTopicRecord record) { String topicName; if (topicDelta != null) { topicName = topicDelta.image().name(); + createdTopics.remove(topicName); Review Comment: Line 135 removes the topic from `changedTopics`: ``` TopicDelta topicDelta = changedTopics.remove(record.topicId()); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org