diff --git a/tools/component/component.go b/tools/component/component.go index 26c8904c4..e0d753c3f 100644 --- a/tools/component/component.go +++ b/tools/component/component.go @@ -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!")