This is an automated email from the ASF dual-hosted git repository.
kturner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push:
new e5a0a3faef fixes KeywordStartIT (#6116)
e5a0a3faef is described below
commit e5a0a3faefda1e246a13340fe878648d59c463d8
Author: Keith Turner <[email protected]>
AuthorDate: Fri Feb 6 11:05:03 2026 -0500
fixes KeywordStartIT (#6116)
---
.../main/java/org/apache/accumulo/test/start/KeywordStartIT.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/test/src/main/java/org/apache/accumulo/test/start/KeywordStartIT.java
b/test/src/main/java/org/apache/accumulo/test/start/KeywordStartIT.java
index 756e9c9e76..112ba41356 100644
--- a/test/src/main/java/org/apache/accumulo/test/start/KeywordStartIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/start/KeywordStartIT.java
@@ -179,9 +179,9 @@ public class KeywordStartIT {
expectSet.add(new CommandInfo(UsageGroup.OTHER, "zoo-prop-editor",
ZooPropEditor.class));
expectSet.add(new CommandInfo(UsageGroup.OTHER, "zoo-zap", ZooZap.class));
expectSet.add(new CommandInfo(UsageGroup.PROCESS, "zookeeper",
ZooKeeperMain.class));
- expectSet.add(new CommandInfo(UsageGroup.OTHER, "cancel-compaction",
CancelCompaction.class));
- expectSet.add(new CommandInfo(UsageGroup.OTHER, "list-compactors",
ListCompactors.class));
- expectSet.add(new CommandInfo(UsageGroup.OTHER, "list-compactions",
ListCompactions.class));
+ expectSet.add(new CommandInfo(UsageGroup.COMPACTION, "cancel",
CancelCompaction.class));
+ expectSet.add(new CommandInfo(UsageGroup.PROCESS, "list-compactors",
ListCompactors.class));
+ expectSet.add(new CommandInfo(UsageGroup.COMPACTION, "list",
ListCompactions.class));
Map<UsageGroup,Map<String,KeywordExecutable>> actualExecutables =
new TreeMap<>(getKeywordExecutables());