-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Description
It shall map from solution (i.e. HikariCP) key to common key. The code is not correct:
@Override
public Map<String, String> confKeyMapping() {
return C.map("url", "jdbcUrl",
"maxConnections", "maximumPoolSize",
"minimumIdle", "minConnections",
"waitTimeout", "connectionTimeout"
);
}Here jdbcUrl, maximumPoolSize and connectionTimeout are HiKariCP key. The correct code should be:
@Override
public Map<String, String> confKeyMapping() {
return C.map("jdbcUrl", "url",
"maximumPoolSize", "maxConnections",
"minimumIdle", "minConnections",
"connectionTimeout", "waitTimeout"
);
}Reactions are currently unavailable