You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "Josh Elser (JIRA)" <ji...@apache.org> on 2015/10/13 22:52:05 UTC

[jira] [Updated] (ACCUMULO-4026) Setting ACCUMULO_CLIENT_CONF_PATH with no client.conf file present throws ConfigurationException

     [ https://issues.apache.org/jira/browse/ACCUMULO-4026?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Josh Elser updated ACCUMULO-4026:
---------------------------------
    Assignee: Jim Klucar

> Setting ACCUMULO_CLIENT_CONF_PATH with no client.conf file present throws ConfigurationException
> ------------------------------------------------------------------------------------------------
>
>                 Key: ACCUMULO-4026
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-4026
>             Project: Accumulo
>          Issue Type: Bug
>          Components: client, core
>    Affects Versions: 1.7.0
>            Reporter: Jim Klucar
>            Assignee: Jim Klucar
>            Priority: Trivial
>
> Setting the environment variable ACCUMULO_CLIENT_CONF_PATH to a directory that exists but does not contain a file named client.conf throws
> org.apache.commons.configuration.ConfigurationException: Cannot load a configuration from a directory
> To demo this, simply set ACCUMULO_CLIENT_CONF_PATH to /tmp, make sure client.conf doesn't exist in /tmp and try to run the accumulo shell.
> The problem is ClientConfiguration.java on line 221 checks File.canRead() which is true for a Directory and a File. The solution is to make the branch check File.isFile() && File.canRead()



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)