updated yml

This commit is contained in:
2025-03-25 11:54:13 +03:00
parent 144b0f37d0
commit bcc8cba89f
3 changed files with 21 additions and 21 deletions

View File

@@ -6,7 +6,7 @@ class MongoConfig:
USER_NAME: str = "mongo_user"
DATABASE_NAME: str = "mongo_database"
HOST: str = HostConfig.MAIN_HOST
PORT: str = 11112
PORT: str = 11117
URL: str = (
f"mongodb://{USER_NAME}:{PASSWORD}@{HOST}:{PORT}/{DATABASE_NAME}?retryWrites=true&w=majority"
)