showuon commented on a change in pull request #8712: URL: https://github.com/apache/kafka/pull/8712#discussion_r448095124
########## File path: streams/src/main/java/org/apache/kafka/streams/processor/internals/InternalTopicManager.java ########## @@ -100,13 +100,19 @@ public InternalTopicManager(final Admin adminClient, final StreamsConfig streams final Set<String> newlyCreatedTopics = new HashSet<>(); while (!topicsNotReady.isEmpty() && remainingRetries >= 0) { - topicsNotReady = validateTopics(topicsNotReady, topics); + final Set<String> tempUnknownTopics = new HashSet<>(); Review comment: Well, this variable naming is actually suggested by @ableegoldman , and I also think the `tempUnknownTopics` is more descriptive. Is that OK for you? https://github.com/apache/kafka/pull/8712#discussion_r444555724  ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org