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 db7591eb4e fixes more ShellIT tests (#6271)
db7591eb4e is described below
commit db7591eb4e51518ef2c3088226fb7402f299f744
Author: Keith Turner <[email protected]>
AuthorDate: Mon Mar 30 11:51:56 2026 -0700
fixes more ShellIT tests (#6271)
Removed unsupported shell startup options in common test code. These
options were causing lots of tests in ShellIT to fail.
---
test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java
b/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java
index e7ba701190..4304d1f97e 100644
--- a/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/shell/ShellIT.java
@@ -171,8 +171,7 @@ public class ShellIT extends SharedMiniClusterBase {
reader = LineReaderBuilder.builder().terminal(terminal).build();
shell = new TestShell(reader);
shell.setLogErrorsToConsole();
- shell.execute(
- new String[] {"--config-file", config.toString(), "-u", "root", "-p",
getRootPassword()});
+ shell.execute(new String[] {"--config-file", config.toString()});
}
@AfterEach