fix: getConversationInfo

This commit is contained in:
withchao
2024-03-13 16:28:18 +08:00
parent d6d151d8f5
commit 27e62c9cd0
2 changed files with 20 additions and 11 deletions
+3 -2
View File
@@ -98,13 +98,14 @@ func main() {
}
checks := []checkFunc{
//{name: "Mysql", function: checkMysql},
{name: "Mongo", function: checkMongo, config: conf},
{name: "Redis", function: checkRedis, config: conf},
{name: "Minio", function: checkMinio, config: conf},
{name: "Zookeeper", function: checkZookeeper, config: conf},
{name: "Kafka", function: checkKafka, config: conf},
}
if conf.Object.Enable == "minio" {
checks = append(checks, checkFunc{name: "Minio", function: checkMinio, config: conf})
}
for i := 0; i < maxRetry; i++ {
if i != 0 {