summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBar Shaul <88437685+barshaul@users.noreply.github.com>2022-06-27 13:28:09 +0300
committerGitHub <noreply@github.com>2022-06-27 13:28:09 +0300
commit11cf66afc9b764248f12761138cc28a2b3e1366c (patch)
tree14bf8bd455faeb3f98f16b5eece8e2abd12d6f3b /README.md
parent8b18d5b2b63ebf218a1f116367a1a09c3d402192 (diff)
downloadredis-py-11cf66afc9b764248f12761138cc28a2b3e1366c.tar.gz
Changed dynamic_startup_nodes default value to 'True' to prevent breaking backward compatibility (#2251)
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 64c9d28..5a4bb71 100644
--- a/README.md
+++ b/README.md
@@ -1268,7 +1268,7 @@ Using scripting within pipelines in cluster mode is **not supported**.
When set to true, read commands will be assigned between the
primary and its replications in a Round-Robin manner.
- dynamic_startup_nodes: (default=False)
+ dynamic_startup_nodes: (default=True)
Set the RedisCluster's startup nodes to all of the discovered nodes.
If true, the cluster's discovered nodes will be used to determine the
@@ -1276,7 +1276,7 @@ Using scripting within pipelines in cluster mode is **not supported**.
It will remove the initial passed startup nodes if their endpoints aren't
listed in the CLUSTER SLOTS output.
If you use dynamic DNS endpoints for startup nodes but CLUSTER SLOTS lists
- specific IP addresses, keep it at false.
+ specific IP addresses, it is best to set it to false.
cluster_error_retry_attempts: (default=3)