jolshan commented on code in PR #13798: URL: https://github.com/apache/kafka/pull/13798#discussion_r1242867082
########## clients/src/main/java/org/apache/kafka/common/requests/AddPartitionsToTxnRequest.java: ########## @@ -154,6 +154,11 @@ public AddPartitionsToTxnRequest normalizeRequest() { return new AddPartitionsToTxnRequest(new AddPartitionsToTxnRequestData().setTransactions(singletonTransaction()), version()); } + public boolean verifyOnlyRequest() { + return version() > 3 && Review Comment: Unfortunately that introduces a dependency on main in clients. I can add such a constant to this request file if that helps. -- 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