Github user joshelser commented on a diff in the pull request:

    https://github.com/apache/accumulo/pull/206#discussion_r97679380
  
    --- Diff: 
minicluster/src/main/java/org/apache/accumulo/cluster/standalone/StandaloneAccumuloCluster.java
 ---
    @@ -184,4 +188,12 @@ public ClusterUser getUser(int offset) {
         checkArgument(offset >= 0 && offset < users.size(), "Invalid offset, 
should be non-negative and less than " + users.size());
         return users.get(offset);
       }
    +
    +  @Override
    +  public AccumuloConfiguration getSiteConfiguration() {
    +    Configuration conf = new Configuration(false);
    +    Path accumuloSite = new Path(serverAccumuloConfDir, 
"accumulo-site.xml");
    --- End diff --
    
    What happens if this file is unreadable (filesystem perms are off) or 
missing (misconfiguration from human error)? Should this fail hard with an 
uncheck Exception? Or just log WARN message?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to