Merge pull request #366 from stephenma064/patch-1

Fix client.go to throw real error when configuration file is incorrect format
This commit is contained in:
Aaron Meihm 2017-10-25 16:00:30 -05:00 коммит произвёл GitHub
Родитель 01999c0727 78e95353d1
Коммит bf45a6e56f
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -175,6 +175,9 @@ func ReadConfiguration(file string) (conf Configuration, err error) {
}
}
err = gcfg.ReadFileInto(&conf, file)
if err != nil {
panic(err)
}
// If standard PGP based authentication is being used, validate these settings
// from the configuration file
if conf.GPG.UseAPIKeyAuth == "" {