mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 07:38:06 +01:00
Fix a silly typo when generating Redis URIs for tests
This commit is contained in:
committed by
Jon Chambers
parent
631b9a5290
commit
73365369df
@@ -140,8 +140,8 @@ public class RedisClusterExtension implements BeforeAllCallback, BeforeEachCallb
|
||||
|
||||
redisUris = Arrays.stream(REDIS_SERVICE_NAMES)
|
||||
.map(serviceName -> RedisURI.create(
|
||||
composeContainer.getServiceHost("redis-0-1", REDIS_PORT),
|
||||
composeContainer.getServicePort("redis-0-1", REDIS_PORT)))
|
||||
composeContainer.getServiceHost(serviceName, REDIS_PORT),
|
||||
composeContainer.getServicePort(serviceName, REDIS_PORT)))
|
||||
.toList();
|
||||
|
||||
// Wait for the cluster to be fully up; just having the containers running isn't enough since they still need to do
|
||||
|
||||
Reference in New Issue
Block a user