File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
.github/actions/run-tests Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ runs:
142142 sudo apt-get install -y redis-tools
143143 echo "Docker Containers:"
144144 docker ps
145+ echo "Cluster nodes:"
145146 redis-cli -p 16379 CLUSTER NODES
146147 shell : bash
147148
Original file line number Diff line number Diff line change 11sentinel resolve-hostnames yes
22sentinel monitor redis-py-test redis 6379 2
3- sentinel down-after-milliseconds redis-py-test 5000
4- sentinel failover-timeout redis-py-test 60000
3+ # Be much more tolerant to transient stalls (index builds, GC, I/O)
4+ sentinel down-after-milliseconds redis-py-test 60000
5+ # Avoid rapid repeated failover attempts
6+ sentinel failover-timeout redis-py-test 180000
7+ # Keep it conservative: sync one replica at a time
58sentinel parallel-syncs redis-py-test 1
You can’t perform that action at this time.
0 commit comments