loadZooConfig can mask true error
---------------------------------
Key: HBASE-1656
URL: https://issues.apache.org/jira/browse/HBASE-1656
Project: Hadoop HBase
Issue Type: Bug
Reporter: Bryan Duxbury
Priority: Minor
Fix For: 0.20.0
{code}
try {
properties.load(inputStream);
} catch (IOException e) {
String msg = "fail to read properties from " + ZOOKEEPER_CONFIG_NAME;
LOG.fatal(msg);
throw new IOException(msg);
}
{code}
This masks the actual error, if there is one.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.