JAVA-31643 Upgrade spring-boot-request-params, spring-boot-3-native and spring-boot-redis (#16254)
Co-authored-by: timis1 <noreplay@yahoo.com>
This commit is contained in:
parent
96c992cd87
commit
404c3bf573
|
@ -88,12 +88,12 @@
|
|||
<module>spring-boot-data-2</module>
|
||||
<module>spring-boot-validation</module>
|
||||
<!-- <module>spring-boot-data-3</module>--> <!-- failing after upgrading to spring boot 3.2.x -->
|
||||
<!-- <module>spring-boot-redis</module>--> <!-- failing after upgrading to spring boot 3.2.x -->
|
||||
<module>spring-boot-redis</module>
|
||||
<module>spring-boot-cassandre</module>
|
||||
<module>spring-boot-react</module>
|
||||
<!-- <module>spring-boot-3</module> --> <!-- JAVA-20931 -->
|
||||
<module>spring-boot-3-grpc</module>
|
||||
<!-- <module>spring-boot-3-native</module>--> <!-- failing after upgrading to spring boot 3.2.x -->
|
||||
<module>spring-boot-3-native</module>
|
||||
<module>spring-boot-3-observation</module>
|
||||
<module>spring-boot-3-test-pitfalls</module>
|
||||
<module>spring-boot-3-testcontainers</module>
|
||||
|
|
|
@ -13,6 +13,11 @@ public class RedisTestConfiguration {
|
|||
|
||||
public RedisTestConfiguration(RedisProperties redisProperties) {
|
||||
this.redisServer = new RedisServer(redisProperties.getPort());
|
||||
// To run on windows uncomment the following lines
|
||||
// this.redisServer = RedisServer.builder().setting("maxheap 200m")
|
||||
// .port(redisProperties.getPort())
|
||||
// .setting("bind localhost")
|
||||
// .build();
|
||||
}
|
||||
|
||||
@PostConstruct
|
||||
|
|
Loading…
Reference in New Issue