Skip to content

Commit

Permalink
fixed error with default maximum connections
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Sep 25, 2024
1 parent 17478fc commit 1505b49
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void validateLoad() throws Exception {
// Minimum connection opening 1
BackendDatabaseConfig.setMinimumIdle(dataBase.getMinimum_idle());
// 10
BackendDatabaseConfig.setMaximumPoolSize(dataBase.getMaximum_pool_size() + 1);
BackendDatabaseConfig.setMaximumPoolSize(dataBase.getMaximum_pool_size());
// New connection waiting time 5 seconds 5000
BackendDatabaseConfig.setConnectionTimeout(dataBase.getConnection_timeout());
// Close connections after 10 minutes
Expand Down

0 comments on commit 1505b49

Please sign in to comment.