Error not handled

pull/2040/head
skiffer-git 8 months ago
parent 54f13e74ff
commit caed25252d

@ -104,11 +104,11 @@ func main() {
if err != nil {
if check.name == "Minio" {
if errors.Is(err, errMinioNotEnabled) {
fmt.Println(err.Error())
fmt.Println(err.Error(), " check ", check.name)
checks[index].flag = true
}
if errors.Is(err, errSignEndPoint) {
fmt.Fprintf(os.Stderr, err.Error())
fmt.Fprintf(os.Stderr, err.Error(), " check ", check.name)
checks[index].flag = true
}
}
@ -118,7 +118,8 @@ func main() {
strings.Contains(errs.Unwrap(err).Error(), "timeout") ||
strings.Contains(errs.Unwrap(err).Error(), "context deadline exceeded") {
component.ErrorPrint(fmt.Sprintf("try check connection %s", check.name))
continue
allSuccess = false
break
}
} else {
checks[index].flag = true

Loading…
Cancel
Save