mjsax commented on a change in pull request #9368: URL: https://github.com/apache/kafka/pull/9368#discussion_r499105607
########## File path: streams/src/main/java/org/apache/kafka/streams/processor/internals/AbstractTask.java ########## @@ -137,4 +146,48 @@ public void update(final Set<TopicPartition> topicPartitions, final Map<String, this.inputPartitions = topicPartitions; topology.updateSourceTopics(nodeToSourceTopics); } + + @Override + public void maybeInitTaskTimeoutOrThrow(final long currentWallClockMs, + final TimeoutException timeoutException, + final Logger log) throws StreamsException { Review comment: We want to use the logger of `StreamTask` or `StandbyTask` to get the proper log prefix; thus, we just pass it into this method. ---------------------------------------------------------------- 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