mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
Error not handled
This commit is contained in:
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…
x
Reference in New Issue
Block a user