ddanielr commented on code in PR #4080:
URL: https://github.com/apache/accumulo/pull/4080#discussion_r1430814102


##########
test/src/main/java/org/apache/accumulo/test/compaction/CompactionExecutorIT.java:
##########
@@ -180,6 +212,18 @@ public static void teardown() {
 
   @AfterEach
   public void cleanup() {
+    var iter = compactionGroups.iterator();
+    while (iter.hasNext()) {
+      var group = iter.next();
+      
getCluster().getConfig().getClusterServerConfiguration().addCompactorResourceGroup(group,
 0);
+      try {
+        getCluster().getClusterControl().stopCompactorGroup(group);
+      } catch (Exception e) {
+        // Exception is encountered but ignored.

Review Comment:
   Added logging statement for the exception. 



-- 
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: notifications-unsubscr...@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to