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
From #2053 we learned that it is pretty simple to run into a scenario where a connection factory remains unconfigured while obtaining connections works to a certain degree. We should fail early with an IllegalStateException if the connection factory is not fully initialized via afterPropertiesSet to avoid using partially configured clients.
The text was updated successfully, but these errors were encountered:
…egalStateException.
Obtaining a Connection from RedisConnectionFactory and its reactive variant is now guarded by IllegalStateException that is thrown if the connection factory was not yet initialized.
Previously, connections could be obtained where configuration was partially applied.
Closes#2057
From #2053 we learned that it is pretty simple to run into a scenario where a connection factory remains unconfigured while obtaining connections works to a certain degree. We should fail early with an
IllegalStateException
if the connection factory is not fully initialized viaafterPropertiesSet
to avoid using partially configured clients.The text was updated successfully, but these errors were encountered: