RaidenE1 commented on code in PR #20123: URL: https://github.com/apache/kafka/pull/20123#discussion_r2192836284
########## streams/src/main/java/org/apache/kafka/streams/processor/internals/StreamThread.java: ########## @@ -1536,6 +1537,10 @@ public void handleStreamsRebalanceData() { for (final StreamsGroupHeartbeatResponseData.Status status : streamsRebalanceData.get().statuses()) { if (status.statusCode() == StreamsGroupHeartbeatResponse.Status.SHUTDOWN_APPLICATION.code()) { shutdownErrorHook.run(); + } else if (status.statusCode() == StreamsGroupHeartbeatResponse.Status.MISSING_SOURCE_TOPICS.code()) { + final String errorMsg = "Missing source topics"; + log.error(errorMsg); + throw new MissingSourceTopicException(errorMsg); Review Comment: Done, append the detail at the end -- 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