fix bug: component check

pull/2054/head
skiffer-git 2 years ago
parent a9c4c4c565
commit 28da7f6947

@ -101,17 +101,15 @@ func main() {
if !check.flag {
err = check.function(check.config)
if err != nil {
allSuccess = false
if check.name == "Minio" {
if errors.Is(err, errMinioNotEnabled) ||
errors.Is(err, errSignEndPoint) ||
errors.Is(err, errApiURL) {
fmt.Fprintf(os.Stderr, err.Error(), " check ", check.name)
checks[index].flag = true
allSuccess = false
continue
}
allSuccess = false
component.ErrorPrint(fmt.Sprintf("Check component: %s, failed: %+v", check.name, err))
break
}

Loading…
Cancel
Save