abbccdda commented on a change in pull request #8712: URL: https://github.com/apache/kafka/pull/8712#discussion_r448457381
########## 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: Sure, I don't feel strong about reverting the naming once we already got a reason there. ---------------------------------------------------------------- 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