kevinrr888 commented on code in PR #4051:
URL: https://github.com/apache/accumulo/pull/4051#discussion_r1423169225


##########
test/src/main/java/org/apache/accumulo/test/ScanConsistencyIT.java:
##########
@@ -170,34 +173,34 @@ private static void runTest(AccumuloClient client, 
FileSystem fileSystem, String
       var tableOpsTask = executor.submit(new TableOpsTask(testContext));
 
       // let the concurrent mayhem run for a bit
-      Thread.sleep(60000);
+      Thread.sleep(sleepTime);
 
       // let the threads know to exit
       testContext.keepRunning.set(false);
 
       for (Future<WriteStats> writeTask : writeTasks) {
         var stats = writeTask.get();
-        logMessage(String.format("Wrote:%,d Bulk imported:%,d Deleted:%,d Bulk 
deleted:%,d",
+        log.info(String.format("Wrote:%,d Bulk imported:%,d Deleted:%,d Bulk 
deleted:%,d",

Review Comment:
   `%,d` (note the comma) converts the integer to be formatted with commas. I 
don't think `{}` can be used to format the string like this but I'm not sure



-- 
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