dlmarion commented on issue #4553:
URL: https://github.com/apache/accumulo/issues/4553#issuecomment-2111165350

   I made the following change, and saw non-zero output.
   
   ```
   diff --git 
a/test/src/main/java/org/apache/accumulo/test/compaction/ExternalCompactionProgressIT.java
 
b/test/src/main/java/org/apache/accumulo/test/compaction/ExternalCompactionProgressIT.java
   index abdf66b727..59f6e784bd 100644
   --- 
a/test/src/main/java/org/apache/accumulo/test/compaction/ExternalCompactionProgressIT.java
   +++ 
b/test/src/main/java/org/apache/accumulo/test/compaction/ExternalCompactionProgressIT.java
   @@ -129,6 +129,7 @@ public class ExternalCompactionProgressIT extends 
AccumuloClusterHarness {
        var ecMap = ecList.getCompactions();
        if (ecMap != null) {
          ecMap.forEach((ecid, ec) -> {
   +        ec.getUpdates().forEach((timestamp, update) -> 
System.out.println(update.toString()));
            // returns null if it's a new mapping
            RunningCompactionInfo rci = new RunningCompactionInfo(ec);
            RunningCompactionInfo previousRci = runningMap.put(ecid, rci);
   ```


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