Merge pull request #463 from sosedoff/skip-local-auth-fail

Do not terminate if local authentication failed on start
This commit is contained in:
Dan Sosedoff
2020-04-27 10:15:25 -05:00
committed by GitHub

View File

@@ -93,11 +93,18 @@ func initClient() {
fmt.Println("Error:", msg)
return
}
// Do not bail if local server is not running.
if strings.Contains(msg, "connection refused") {
fmt.Println("Error:", msg)
return
}
// Do not bail if local auth is invalid
if strings.Contains(msg, "authentication failed") {
fmt.Println("Error:", msg)
return
}
}
exitWithMessage(msg)