chenyulin0719 commented on code in PR #17187: URL: https://github.com/apache/kafka/pull/17187#discussion_r1764866480
########## streams/src/test/java/org/apache/kafka/streams/integration/utils/IntegrationTestUtils.java: ########## @@ -634,6 +634,19 @@ public static void waitForStandbyCompletion(final KafkaStreams streams, } } + /** + * Wait until enough restoring tasks have been started + */ + public static void waitForActiveRestoringTask(final KafkaStreams streams, + final int expectedTasks, + final long timeoutMilliseconds) throws Exception { + TestUtils.waitForCondition(() -> { Review Comment: Updated. -- 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