Merge branch 'release-v3.6' into fix-bug-delete-data-conversion

This commit is contained in:
skiffer-git 2024-03-09 12:43:29 +08:00 committed by GitHub
commit 2c922efc92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,6 +120,7 @@ func main() {
if err != nil {
allSuccess = false
colorErrPrint(fmt.Sprintf("Check component: %s, failed: %v", check.name, err.Error()))
if check.name == "Minio" {
if errors.Is(err, errMinioNotEnabled) ||
errors.Is(err, errSignEndPoint) ||
@ -134,6 +135,7 @@ func main() {
component.SuccessPrint(fmt.Sprintf("%s connected successfully", check.name))
}
}
}
if allSuccess {
component.SuccessPrint("All components started successfully!")