Merge pull request #624 from hopkings2008/master

add configuration file close after it is parsed.
This commit is contained in:
Stephen Day 2015-06-11 20:07:12 -07:00
commit 4dc0c5e0c5
1 changed files with 2 additions and 0 deletions

View File

@ -152,6 +152,8 @@ func resolveConfiguration() (*configuration.Configuration, error) {
return nil, err
}
defer fp.Close()
config, err := configuration.Parse(fp)
if err != nil {
return nil, fmt.Errorf("error parsing %s: %v", configurationPath, err)