This is an automated email from the ASF dual-hosted git repository.

keith-turner 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 9eef270604 adds conf import/export to KeywordStartIT (#6343)
9eef270604 is described below

commit 9eef27060407549f477aec47e78bc582896867cf
Author: Keith Turner <[email protected]>
AuthorDate: Tue Apr 28 09:36:20 2026 -0700

    adds conf import/export to KeywordStartIT (#6343)
---
 test/src/main/java/org/apache/accumulo/test/start/KeywordStartIT.java | 4 ++++
 1 file changed, 4 insertions(+)

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 3b3b819730..04f302b63d 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
@@ -58,6 +58,8 @@ import org.apache.accumulo.monitor.Monitor;
 import org.apache.accumulo.monitor.MonitorExecutable;
 import org.apache.accumulo.server.conf.CheckAccumuloProperties;
 import org.apache.accumulo.server.conf.CheckCompactionConfig;
+import org.apache.accumulo.server.conf.util.ExportConfigCommand;
+import org.apache.accumulo.server.conf.util.ImportConfigCommand;
 import org.apache.accumulo.server.conf.util.ZooInfoViewer;
 import org.apache.accumulo.server.conf.util.ZooPropEditor;
 import org.apache.accumulo.server.init.Initialize;
@@ -195,6 +197,8 @@ public class KeywordStartIT {
         .add(new CommandInfo(CommandGroups.INSTANCE, "delete-instance", 
DeleteZooInstance.class));
     expectSet.add(new CommandInfo(CommandGroups.CONFIG, "dump-config", 
DumpConfig.class));
     expectSet.add(new CommandInfo(CommandGroups.CONFIG, "dump-zoo", 
DumpZookeeper.class));
+    expectSet.add(new CommandInfo(CommandGroups.CONFIG, "import", 
ImportConfigCommand.class));
+    expectSet.add(new CommandInfo(CommandGroups.CONFIG, "export", 
ExportConfigCommand.class));
     expectSet.add(new CommandInfo(CommandGroups.INSTANCE, "fate", Fate.class));
     expectSet.add(new CommandInfo(CommandGroups.TABLE, 
"find-online-ondemand-tablets",
         ListOnlineOnDemandTablets.class));

Reply via email to