We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ffa35f0 + 6f752b0 commit 17a16c6Copy full SHA for 17a16c6
.readthedocs.yml
@@ -2,10 +2,9 @@ version: 2
2
3
python:
4
install:
5
+ - requirements: docs/requirements.txt
6
- method: pip
7
path: .
- - method: pip
8
- requirements: ./docs/requirements.txt
9
10
build:
11
os: ubuntu-20.04
redis/cluster.py
@@ -2122,7 +2122,7 @@ def send_cluster_commands(
2122
raise_on_error=raise_on_error,
2123
allow_redirections=allow_redirections,
2124
)
2125
- except (ClusterDownError, ConnectionError) as e:
+ except RedisCluster.ERRORS_ALLOW_RETRY as e:
2126
if retry_attempts > 0:
2127
# Try again with the new cluster setup. All other errors
2128
# should be raised.
0 commit comments