You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2013/10/12 00:48:10 UTC

git commit: ACCUMULO-1368 fixed bug w/ setting ACCUMULO_CONF_DIR in MAC

Updated Branches:
  refs/heads/master 142f07c4c -> 95ea4e1f8


ACCUMULO-1368 fixed bug w/ setting ACCUMULO_CONF_DIR in MAC


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/95ea4e1f
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/95ea4e1f
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/95ea4e1f

Branch: refs/heads/master
Commit: 95ea4e1f8e6a9b290dd98b5916c5e71e3c148238
Parents: 142f07c
Author: Keith Turner <kt...@apache.org>
Authored: Fri Oct 11 18:43:25 2013 -0400
Committer: Keith Turner <kt...@apache.org>
Committed: Fri Oct 11 18:43:25 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/95ea4e1f/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 dd230dd..a3bd8d5 100644
--- a/minicluster/src/main/java/org/apache/accumulo/minicluster/MiniAccumuloCluster.java
+++ b/minicluster/src/main/java/org/apache/accumulo/minicluster/MiniAccumuloCluster.java
@@ -239,7 +239,7 @@ public class MiniAccumuloCluster {
 
     builder.environment().put("ACCUMULO_HOME", config.getDir().getAbsolutePath());
     builder.environment().put("ACCUMULO_LOG_DIR", config.getLogDir().getAbsolutePath());
-    builder.environment().put("ACCUMULO_CONF_DIR", config.getDir().getAbsolutePath());
+    builder.environment().put("ACCUMULO_CONF_DIR", config.getConfDir().getAbsolutePath());
 
     Process process = builder.start();