jsancio commented on a change in pull request #10253: URL: https://github.com/apache/kafka/pull/10253#discussion_r586814226
########## File path: metadata/src/main/java/org/apache/kafka/metalog/LocalLogManager.java ########## @@ -328,8 +328,21 @@ public void register(MetaLogListener listener) throws Exception { @Override public long scheduleWrite(long epoch, List<ApiMessageAndVersion> batch) { - return shared.tryAppend(nodeId, leader.epoch(), new LocalRecordBatch( - batch.stream().map(r -> r.message()).collect(Collectors.toList()))); + return scheduleAtomicWrite(epoch, batch); + } + + @Override + public long scheduleAtomicWrite(long epoch, List<ApiMessageAndVersion> batch) { + return shared.tryAppend( Review comment: In general, I agree but can we keep this reformatting? I found the old formatting hard to read and technically we are adding a new method called `scheduleAtomicWrite`. ---------------------------------------------------------------- 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