cadonna commented on code in PR #18653: URL: https://github.com/apache/kafka/pull/18653#discussion_r1923716885
########## streams/src/main/java/org/apache/kafka/streams/processor/internals/StateDirectory.java: ########## @@ -347,27 +354,48 @@ synchronized boolean lock(final TaskId taskId) { return true; } + try { + Thread.sleep(updateOrCreateBackoffRecord(taskId)); + } catch (final InterruptedException e) { + throw new RuntimeException(e); + } Review Comment: Where does this come from? -- 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