Updated Branches: refs/heads/master 808a5e01e -> 0cf2ff72d
ACCUMULO-1544 Thought this flag was gone in MAC, fixed now Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/0cf2ff72 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/0cf2ff72 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/0cf2ff72 Branch: refs/heads/master Commit: 0cf2ff72d9c9f2e76165e3285991c9b546b5f7ec Parents: 808a5e0 Author: John Vines <[email protected]> Authored: Wed Sep 4 16:31:00 2013 -0400 Committer: John Vines <[email protected]> Committed: Wed Sep 4 16:31:00 2013 -0400 ---------------------------------------------------------------------- .../java/org/apache/accumulo/minicluster/MiniAccumuloCluster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/0cf2ff72/minicluster/src/main/java/org/apache/accumulo/minicluster/MiniAccumuloCluster.java ---------------------------------------------------------------------- diff --git a/minicluster/src/main/java/org/apache/accumulo/minicluster/MiniAccumuloCluster.java b/minicluster/src/main/java/org/apache/accumulo/minicluster/MiniAccumuloCluster.java index 7c27dd8..43fa6cb 100644 --- a/minicluster/src/main/java/org/apache/accumulo/minicluster/MiniAccumuloCluster.java +++ b/minicluster/src/main/java/org/apache/accumulo/minicluster/MiniAccumuloCluster.java @@ -337,7 +337,7 @@ public class MiniAccumuloCluster { if (!initialized) { // sleep a little bit to let zookeeper come up before calling init, seems to work better UtilWaitThread.sleep(250); - Process initProcess = exec(Initialize.class, "--instance-name", config.getInstanceName(), "--password", config.getRootPassword(), "--username", "root"); + Process initProcess = exec(Initialize.class, "--instance-name", config.getInstanceName(), "--password", config.getRootPassword()); int ret = initProcess.waitFor(); if (ret != 0) { throw new RuntimeException("Initialize process returned " + ret);
