Do not terminate if local authentication failed on start

This commit is contained in:
Dan Sosedoff 2020-04-23 15:54:12 -05:00
parent 82b2918963
commit 02ddf85af2

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)