mirror of
https://github.com/DreamExposure/DisCal-Discord-Bot.git
synced 2026-02-09 21:18:28 -06:00
Bump max MySQL connection pool limit to 15, from 10
This commit is contained in:
@@ -53,7 +53,9 @@ object DatabaseManager {
|
||||
.option(DATABASE, settings.database)
|
||||
.build())
|
||||
|
||||
val conf = ConnectionPoolConfiguration.builder(factory).build()
|
||||
val conf = ConnectionPoolConfiguration.builder(factory)
|
||||
.maxSize(15)
|
||||
.build()
|
||||
|
||||
pool = ConnectionPool(conf)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user