Konstantin Boudnik created BIGTOP-2168:
------------------------------------------
Summary: A erroneous typo in FailureVars#loadProps method
Key: BIGTOP-2168
URL: https://issues.apache.org/jira/browse/BIGTOP-2168
Project: Bigtop
Issue Type: Bug
Components: tests
Affects Versions: 1.0.0
Reporter: Konstantin Boudnik
Assignee: Dasha Boudnik
Fix For: 1.1.0
Looks like a typo in the line to read the property file
{code}
BufferedReader is = new BufferedReader(new
InputStreamReader(getClass(pFile)));
{code}
Clearly should be saying
{code}
BufferedReader is = new BufferedReader(new InputStreamReader(new
FileInputStream(pFile)));
{code}
instead
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)