You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use the HikariDataSource(HikariConfig configuration) constructor the first step (configuration.validate()) overrides any pre-configured poolName at line 682 of HikariConfig:
If you use the HikariDataSource(HikariConfig configuration) constructor the first step (configuration.validate()) overrides any pre-configured poolName at line 682 of HikariConfig:
poolName = "HikariPool-" + poolNumber++;
This looks like it should be:
if (poolName == null) {
poolName = "HikariPool-" + poolNumber++;
}
I'm using HikariCP 1.4.0
The text was updated successfully, but these errors were encountered: