fix bug: component check

This commit is contained in:
skiffer-git 2024-03-08 23:36:13 +08:00
parent 9434530f69
commit 979913aa93

View File

@ -80,7 +80,6 @@ func main() {
return
}
checks := []checkFunc{
//{name: "Mysql", function: checkMysql},
{name: "Mongo", function: checkMongo, config: conf},
@ -134,6 +133,7 @@ var errMinioNotEnabled = errors.New("minio.Enable is not configured to use MinIO
var errSignEndPoint = errors.New("minio.signEndPoint contains 127.0.0.1, causing issues with image sending")
var errApiURL = errors.New("object.apiURL contains 127.0.0.1, causing issues with image sending")
}
// checkMongo checks the MongoDB connection without retries
func checkMongo(config *config.GlobalConfig) error {