fix bug: component check

pull/2053/head
skiffer-git 2 years ago
parent 9729e69bbf
commit 073545e282

@ -1,4 +1,4 @@
\Users\17191\GolandProjects\awesomeProject>#!/usr/bin/env bash #!/usr/bin/env bash
# Copyright © 2023 OpenIM. All rights reserved. # Copyright © 2023 OpenIM. All rights reserved.
# #
@ -14,6 +14,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# shellcheck disable=SC2034 # Variables sourced in other scripts. # shellcheck disable=SC2034 # Variables sourced in other scripts.
# Common utilities, variables and checks for all build scripts. # Common utilities, variables and checks for all build scripts.

@ -103,37 +103,29 @@ func main() {
err = check.function(check.config) err = check.function(check.config)
if err != nil { if err != nil {
if check.name == "Minio" { if check.name == "Minio" {
if errors.Is(err, errMinioNotEnabled) { if errors.Is(err, errMinioNotEnabled) ||
fmt.Println(err.Error(), " check ", check.name) errors.Is(err, errSignEndPoint) ||
checks[index].flag = true errors.Is(err, errApiURL) {
}
if errors.Is(err, errSignEndPoint) {
fmt.Fprintf(os.Stderr, err.Error(), " check ", check.name) fmt.Fprintf(os.Stderr, err.Error(), " check ", check.name)
checks[index].flag = true checks[index].flag = true
continue
} }
} }
component.ErrorPrint(fmt.Sprintf("Starting %s failed:%v.", check.name, errs.Unwrap(err).Error()))
if strings.Contains(errs.Unwrap(err).Error(), "connection refused") ||
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))
allSuccess = false allSuccess = false
component.ErrorPrint(fmt.Sprintf("Check component: %s failed:%v.", check.name, errs.Error()))
break break
} }
} else {
checks[index].flag = true checks[index].flag = true
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!")
return return
} }
} }
component.ErrorPrint("Some components started failed!") component.ErrorPrint("Some components checked failed!")
os.Exit(-1) os.Exit(-1)
} }

Loading…
Cancel
Save