diff --git a/src/main/java/io/lettuce/core/masterreplica/MasterReplica.java b/src/main/java/io/lettuce/core/masterreplica/MasterReplica.java index 73ed07462f..659dc285a7 100644 --- a/src/main/java/io/lettuce/core/masterreplica/MasterReplica.java +++ b/src/main/java/io/lettuce/core/masterreplica/MasterReplica.java @@ -49,18 +49,19 @@ * Master-Replica topologies are either static or semi-static. Redis Standalone instances with attached replicas provide no * failover/HA mechanism. Redis Sentinel managed instances are controlled by Redis Sentinel and allow failover (which include * master promotion). The {@link MasterReplica} API supports both mechanisms. The topology is provided by a - * {@link TopologyProvider}: + * {@link io.lettuce.core.masterslave.TopologyProvider}: * * * *

Topology Updates

@@ -69,9 +70,8 @@ *
  • Redis Sentinel: Subscribes to all Sentinels and listens for Pub/Sub messages to trigger topology refreshing
  • * * - *

    Connection Fault-Tolerance

    - * Connecting to Master/Replica bears the possibility that individual nodes are not reachable. {@link MasterReplica} can still - * connect to a partially-available set of nodes. + *

    Connection Fault-Tolerance

    Connecting to Master/Replica bears the possibility that individual nodes are not + * reachable. {@link MasterReplica} can still connect to a partially-available set of nodes. * *