fix: mongo uri connect (#1611)

This commit is contained in:
a3d21 2023-12-29 10:25:03 +08:00 committed by GitHub
parent 998d4a3504
commit cfde7bb0ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,6 +74,10 @@ func buildMongoURI() string {
return uri
}
if config.Config.Mongo.Uri != "" {
return config.Config.Mongo.Uri
}
username := os.Getenv("MONGO_USERNAME")
password := os.Getenv("MONGO_PASSWORD")
address := os.Getenv("MONGO_ADDRESS")