mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-08-19 11:59:46 +00:00
fix sqlite db lock by reducing maximum open connections to 1 (#732)
This commit is contained in:
parent
3875827b7a
commit
be9a010d17
@ -34,7 +34,7 @@ func GetDb(dbPath string) *gorm.DB {
|
||||
db, err := gorm.Open(sqlite.Open(dbPath+"/casaOS.db"), &gorm.Config{})
|
||||
c, _ := db.DB()
|
||||
c.SetMaxIdleConns(10)
|
||||
c.SetMaxOpenConns(100)
|
||||
c.SetMaxOpenConns(1)
|
||||
c.SetConnMaxIdleTime(time.Second * 1000)
|
||||
if err != nil {
|
||||
logger.Error("sqlite connect error", zap.Any("db connect error", err))
|
||||
|
Loading…
x
Reference in New Issue
Block a user