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:
timis1 2024-03-30 13:48:24 +02:00 committed by GitHub
parent 96c992cd87
commit 404c3bf573
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View File

@ -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>

View File

@ -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