Unverified Commit 6a052af8 authored by Yossi Gottlieb's avatar Yossi Gottlieb Committed by GitHub
Browse files

Cluster migration test cleanup. (#8726)

* Dump more output on error (always, cluster tests currently have no
verbose flag).
* Slow down redis-cli check iteration.
parent 5629dbe7
......@@ -4,14 +4,15 @@ proc fix_cluster {addr} {
set code [catch {
exec ../../../src/redis-cli {*}[rediscli_tls_config "../../../tests"] --cluster fix $addr << yes
} result]
if {$code != 0 && $::verbose} {
if {$code != 0} {
puts $result
}
assert {$code == 0}
assert_cluster_state ok
wait_for_condition 1000 10 {
[catch {exec ../../../src/redis-cli {*}[rediscli_tls_config "../../../tests"] --cluster check $addr} _] == 0
wait_for_condition 100 100 {
[catch {exec ../../../src/redis-cli {*}[rediscli_tls_config "../../../tests"] --cluster check $addr} result] == 0
} else {
puts $result
fail "Cluster could not settle with configuration"
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment