You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2015/05/31 22:13:07 UTC

[6/9] accumulo git commit: ACCUMULO-3873 Add ambari-installed client.conf location

ACCUMULO-3873 Add ambari-installed client.conf location


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

Branch: refs/heads/1.7
Commit: cc25f5135fbb5ec20f01870de3c068596d98eb2f
Parents: e7f93b6
Author: Josh Elser <el...@apache.org>
Authored: Sun May 31 01:08:05 2015 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Sun May 31 16:12:23 2015 -0400

----------------------------------------------------------------------
 .../java/org/apache/accumulo/core/client/ClientConfiguration.java   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/cc25f513/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java b/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java
index 17ad10b..a71b7e1 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/ClientConfiguration.java
@@ -180,6 +180,7 @@ public class ClientConfiguration extends CompositeConfiguration {
         clientConfPaths.add(System.getenv("ACCUMULO_HOME") + File.separator + "conf" + File.separator + GLOBAL_CONF_FILENAME);
       }
       clientConfPaths.add("/etc/accumulo/" + GLOBAL_CONF_FILENAME);
+      clientConfPaths.add("/etc/accumulo/conf/" + GLOBAL_CONF_FILENAME);
     }
     return clientConfPaths;
   }