config/cmd: don't fatally error if auth account cannot be generated (#1824)

This commit is contained in:
ben-toogood 2020-07-13 12:52:54 +01:00 committed by GitHub
parent 7355455020
commit 2e04fcd718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -668,7 +668,9 @@ func (c *cmd) Before(ctx *cli.Context) error {
// verify the auth's service account
if err := authutil.Verify(*c.opts.Auth); err != nil {
logger.Fatalf("Error generating auth account: %v", err)
if logger.V(logger.DebugLevel, logger.DefaultLogger) {
logger.Debugf("Auth [%v] Error generating auth account: %v", (*c.opts.Auth), err)
}
}
// Setup broker options.

View File

@ -25,7 +25,9 @@ func Verify(a auth.Auth) error {
if err != nil {
return err
}
logger.Debugf("Auth [%v] Generated an auth account", a.String())
if logger.V(logger.DebugLevel, logger.DefaultLogger) {
logger.Debugf("Auth [%v] Generated an auth account", a.String())
}
accID = acc.ID
accSecret = acc.Secret