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