File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/redis Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 23
23
import io .lettuce .core .RedisClient ;
24
24
import io .lettuce .core .SocketOptions ;
25
25
import io .lettuce .core .TimeoutOptions ;
26
+ import io .lettuce .core .api .StatefulConnection ;
26
27
import io .lettuce .core .cluster .ClusterClientOptions ;
27
28
import io .lettuce .core .cluster .ClusterTopologyRefreshOptions ;
28
29
import io .lettuce .core .cluster .ClusterTopologyRefreshOptions .Builder ;
@@ -251,8 +252,8 @@ LettuceClientConfigurationBuilder createBuilder(Pool properties) {
251
252
return LettucePoolingClientConfiguration .builder ().poolConfig (getPoolConfig (properties ));
252
253
}
253
254
254
- private GenericObjectPoolConfig <? > getPoolConfig (Pool properties ) {
255
- GenericObjectPoolConfig <? > config = new GenericObjectPoolConfig <>();
255
+ private GenericObjectPoolConfig <StatefulConnection <?, ?> > getPoolConfig (Pool properties ) {
256
+ GenericObjectPoolConfig <StatefulConnection <?, ?> > config = new GenericObjectPoolConfig <>();
256
257
config .setMaxTotal (properties .getMaxActive ());
257
258
config .setMaxIdle (properties .getMaxIdle ());
258
259
config .setMinIdle (properties .getMinIdle ());
Original file line number Diff line number Diff line change @@ -2228,7 +2228,7 @@ bom {
2228
2228
releaseNotes(" https://github.com/spring-projects/spring-batch/releases/tag/v{version}" )
2229
2229
}
2230
2230
}
2231
- library(" Spring Data Bom" , " 2024.1.2 " ) {
2231
+ library(" Spring Data Bom" , " 2025.0.0-SNAPSHOT " ) {
2232
2232
prohibit {
2233
2233
versionRange " [2025.1.0-M1,)"
2234
2234
because " it exceeds our baseline"
You can’t perform that action at this time.
0 commit comments