Skip to content

Commit 9d6682a

Browse files
committed
Add class documentation
1 parent 2f9a9a6 commit 9d6682a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

redis/asyncio/cluster.py

+6
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@ class RedisCluster(AbstractRedis, AbstractRedisCluster, AsyncRedisClusterCommand
149149
maximum number of connections are already created, a
150150
:class:`~.MaxConnectionsError` is raised. This error may be retried as defined
151151
by :attr:`connection_error_retry_attempts`
152+
:param address_remap:
153+
| An optional callable which, when provided with an internal network
154+
address of a node, e.g. a `(host, port)` tuple, will return the address
155+
where the node is reachable. This can be used to map the addresses at
156+
which the nodes _think_ they are, to addresses at which a client may
157+
reach them, such as when they sit behind a proxy.
152158
153159
| Rest of the arguments will be passed to the
154160
:class:`~redis.asyncio.connection.Connection` instances when created

redis/cluster.py

+6
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,12 @@ def __init__(
515515
reinitialize_steps to 1.
516516
To avoid reinitializing the cluster on moved errors, set
517517
reinitialize_steps to 0.
518+
:param address_remap:
519+
An optional callable which, when provided with an internal network
520+
address of a node, e.g. a `(host, port)` tuple, will return the address
521+
where the node is reachable. This can be used to map the addresses at
522+
which the nodes _think_ they are, to addresses at which a client may
523+
reach them, such as when they sit behind a proxy.
518524
519525
:**kwargs:
520526
Extra arguments that will be sent into Redis instance when created

0 commit comments

Comments
 (0)