Adapt deprecated getIpAddress call with getHost in Redis Tests

Closes gh-32147
pull/32501/head
Stephane Nicoll 2 years ago
parent 463766fd44
commit 50c099334b

@ -45,8 +45,7 @@ class SampleCacheApplicationRedisTests {
@DynamicPropertySource
static void redisProperties(DynamicPropertyRegistry properties) {
properties.add("spring.redis.url",
() -> "redis://" + redis.getContainerIpAddress() + ":" + redis.getFirstMappedPort());
properties.add("spring.redis.url", () -> "redis://" + redis.getHost() + ":" + redis.getFirstMappedPort());
}
@Test

Loading…
Cancel
Save