chia7712 commented on code in PR #20538:
URL: https://github.com/apache/kafka/pull/20538#discussion_r2349938107


##########
coordinator-common/src/main/java/org/apache/kafka/coordinator/common/runtime/CoordinatorLoaderImpl.java:
##########
@@ -100,17 +100,17 @@ public CompletableFuture<LoadSummary> load(TopicPartition 
tp, CoordinatorPlaybac
     }
 
     private void doLoad(
-            TopicPartition tp,
-            CoordinatorPlayback<T> coordinator,
-            CompletableFuture<LoadSummary> future,
-            long startTimeMs
+        TopicPartition tp,
+        CoordinatorPlayback<T> coordinator,
+        CompletableFuture<LoadSummary> future,
+        long startTimeMs
     ) {
         long schedulerQueueTimeMs = time.milliseconds() - startTimeMs;
         try {
             Optional<UnifiedLog> logOpt = partitionLogSupplier.apply(tp);
             if (logOpt.isEmpty()) {
                 future.completeExceptionally(new NotLeaderOrFollowerException(
-                        "Could not load records from " + tp + " because the 
log does not exist."));
+                    "Could not load records from " + tp + " because the log 
does not exist."));

Review Comment:
   @dajac This PR is already good to go, but there are other similar issues in 
this file. Do you plan to fix them all at once? 



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to