You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@bigtop.apache.org by "Konstantin Boudnik (JIRA)" <ji...@apache.org> on 2015/12/07 18:38:11 UTC

[jira] [Created] (BIGTOP-2168) A erroneous typo in FailureVars#loadProps method

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)