cadonna commented on code in PR #12771: URL: https://github.com/apache/kafka/pull/12771#discussion_r1009446157
########## streams/src/test/java/org/apache/kafka/streams/processor/internals/TaskManagerTest.java: ########## @@ -1432,7 +1432,36 @@ public void shouldRethrowTaskCorruptedExceptionFromStateUpdater() { ); assertEquals(mkSet(taskId00, taskId01), thrown.corruptedTasks()); - assertEquals("Tasks [0_1, 0_0] are corrupted and hence needs to be re-initialized", thrown.getMessage()); + assertEquals("Tasks [0_1, 0_0] are corrupted and hence need to be re-initialized", thrown.getMessage()); + } + + @Test + public void shouldRethrowTaskCorruptedExceptionFromInitialization() { + final StreamTask statefulTask0 = statefulTask(taskId00, taskId00ChangelogPartitions) + .inState(State.CREATED) + .withInputPartitions(taskId00Partitions).build(); + final StreamTask statefulTask1 = statefulTask(taskId01, taskId01ChangelogPartitions) + .inState(State.CREATED) + .withInputPartitions(taskId01Partitions).build(); + final StreamTask statefulTask2 = statefulTask(taskId02, taskId02ChangelogPartitions) + .inState(State.CREATED) + .withInputPartitions(taskId01Partitions).build(); Review Comment: nit: ```suggestion .withInputPartitions(taskId02Partitions).build(); ``` -- 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