jolshan commented on code in PR #13591: URL: https://github.com/apache/kafka/pull/13591#discussion_r1180883557
########## clients/src/main/java/org/apache/kafka/clients/producer/internals/TransactionManager.java: ########## @@ -384,14 +436,19 @@ synchronized boolean isAborting() { } synchronized void transitionToAbortableError(RuntimeException exception) { + transitionToAbortableError(exception, InvalidStateTransitionHandler.THROW_EXCEPTION); + } + + private synchronized void transitionToAbortableError(RuntimeException exception, + InvalidStateTransitionHandler invalidStateTransitionHandler) { Review Comment: nit: can we line up the parameters? -- 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