fix(config): update DB_MAX_OVERFLOW to 500

This commit is contained in:
InfinityPacer
2024-11-05 00:48:22 +08:00
parent 4d3aa0faf3
commit 8afaa683cc
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -65,8 +65,8 @@ class ConfigModel(BaseModel):
DB_POOL_RECYCLE: int = 1800
# 数据库连接池获取连接的超时时间(秒),默认 60 秒
DB_POOL_TIMEOUT: int = 60
# 数据库连接池最大溢出连接数,默认 10
DB_MAX_OVERFLOW: int = 10
# 数据库连接池最大溢出连接数,默认 500
DB_MAX_OVERFLOW: int = 500
# SQLite 的 busy_timeout 参数,默认为 60 秒
DB_TIMEOUT: int = 60
# 配置文件目录