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

git commit: ACCUMULO-2024: fix config path property env variable substitution

Updated Branches:
  refs/heads/1.6.0-SNAPSHOT 82e2f57ab -> 7a6fd95c8


ACCUMULO-2024: fix config path property env variable substitution


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

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: 7a6fd95c8c1ad95f5001e84f00953fb9d2b620bd
Parents: 82e2f57
Author: Michael Berman <mb...@sqrrl.com>
Authored: Mon Dec 16 12:07:39 2013 -0500
Committer: John Vines <jv...@gmail.com>
Committed: Mon Dec 16 12:15:59 2013 -0500

----------------------------------------------------------------------
 core/src/main/java/org/apache/accumulo/core/Constants.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/7a6fd95c/core/src/main/java/org/apache/accumulo/core/Constants.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/Constants.java b/core/src/main/java/org/apache/accumulo/core/Constants.java
index 4ef9906..75452e3 100644
--- a/core/src/main/java/org/apache/accumulo/core/Constants.java
+++ b/core/src/main/java/org/apache/accumulo/core/Constants.java
@@ -112,7 +112,7 @@ public class Constants {
   public static final String EXPORT_INFO_FILE = "accumulo_export_info.txt";
 
   // Variables that will be substituted with environment vars in PropertyType.PATH values
-  public static final String[] PATH_PROPERTY_ENV_VARS = new String[] {"$ACCUMULO_HOME", "$ACCUMULO_CONF_DIR"};
+  public static final String[] PATH_PROPERTY_ENV_VARS = new String[] {"ACCUMULO_HOME", "ACCUMULO_CONF_DIR"};
   public static final String DEFAULT_NAMESPACE = "";
   public static final String ACCUMULO_NAMESPACE = "accumulo";
   public static final String DEFAULT_NAMESPACE_ID = "+default";