Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4AE3210C3A for ; Wed, 4 Sep 2013 20:31:43 +0000 (UTC) Received: (qmail 73378 invoked by uid 500); 4 Sep 2013 20:31:43 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 73294 invoked by uid 500); 4 Sep 2013 20:31:39 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 73287 invoked by uid 99); 4 Sep 2013 20:31:38 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Sep 2013 20:31:38 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id F27F6900673; Wed, 4 Sep 2013 20:31:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: vines@apache.org To: commits@accumulo.apache.org Message-Id: <23a86ccb19b646d4bdf084b5481a101e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: ACCUMULO-1544 Thought this flag was gone in MAC, fixed now Date: Wed, 4 Sep 2013 20:31:37 +0000 (UTC) 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 Authored: Wed Sep 4 16:31:00 2013 -0400 Committer: John Vines 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);