Skip to content

Commit

Permalink
Bump max MySQL connection pool limit to 15, from 10
Browse files Browse the repository at this point in the history
  • Loading branch information
NovaFox161 committed Jul 22, 2021
1 parent 9e3dfeb commit 6f5fbfb
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -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)
}
Expand Down

0 comments on commit 6f5fbfb

Please sign in to comment.