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
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.