Fixed - Redis Cluster topology scanned partially in case of DNS resolution error. #4581

pull/4597/head
Nikita Koksharov 2 years ago
parent 182708549f
commit fcefed302c

@ -844,7 +844,7 @@ public class ClusterConnectionManager extends MasterSlaveConnectionManager {
}
CompletableFuture<Void> future = CompletableFuture.allOf(futures.toArray(new CompletableFuture[0]));
return future.handle((r, e) -> {
return future.thenApply(r -> {
addCascadeSlaves(partitions.values());
List<ClusterPartition> ps = partitions.values()

Loading…
Cancel
Save