1
Fork 0

Decrease max open connections to 80

This commit is contained in:
viktorstrate 2020-02-29 10:03:56 +01:00
parent 8ac9d50cb0
commit e0ada51b6b
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ func SetupDatabase() *sql.DB {
break
}
db.SetMaxOpenConns(120)
db.SetMaxOpenConns(80)
return db
}