diff --git a/src/main/java/io/supertokens/storage/mysql/config/MySQLConfig.java b/src/main/java/io/supertokens/storage/mysql/config/MySQLConfig.java index 4c78217..133dc0b 100644 --- a/src/main/java/io/supertokens/storage/mysql/config/MySQLConfig.java +++ b/src/main/java/io/supertokens/storage/mysql/config/MySQLConfig.java @@ -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'"); } }