Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Feb 9, 2024
1 parent 2740d28 commit 4274313
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,13 @@ void validateAndNormalise() throws InvalidConfigException {
if (mysql_minimum_idle_connections != null) {
if (mysql_minimum_idle_connections < 0) {
throw new InvalidConfigException(
"'postgresql_minimum_idle_connections' must be a >= 0");
"'mysql_minimum_idle_connections' must be a >= 0");
}

if (mysql_minimum_idle_connections > mysql_connection_pool_size) {
throw new InvalidConfigException(
"'postgresql_minimum_idle_connections' must be less than or equal to "
+ "'postgresql_connection_pool_size'");
"'mysql_minimum_idle_connections' must be less than or equal to "
+ "'mysql_connection_pool_size'");
}
}

Expand Down

0 comments on commit 4274313

Please sign in to comment.