Open
Description
Issue Description
In the sequelize configuration, I've set
pool: {
min: 10,
max: 30
}
When the connection is acquired it does not check if additional connections need to be made and hence only 1 connection is made instead of 10.
What do you expect to happen?
I expect the min setting to be respected and 10 connections to be made.
Issue is a copy of: sequelize/sequelize#11440 however I believe the issue is in sequelize-pool lib and not in the main sequelize project.
Activity