summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2018-01-24 10:10:45 +0100
committerantirez <antirez@gmail.com>2018-01-24 10:10:48 +0100
commit5f5be1ee330903ce1582386623fe4f9bc28a7801 (patch)
tree4ba5826e2e0aac123837102c2d3d0f623e43f7f8
parent727dd43614ec45e23e2dedbba08b393323feaa4f (diff)
downloadredis-5f5be1ee330903ce1582386623fe4f9bc28a7801.tar.gz
Fix integration test NOREPLICAS error time dependent false positive.
-rw-r--r--tests/integration/replication-2.tcl9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/integration/replication-2.tcl b/tests/integration/replication-2.tcl
index 9446e5cd9..2ff19c3c4 100644
--- a/tests/integration/replication-2.tcl
+++ b/tests/integration/replication-2.tcl
@@ -2,9 +2,12 @@ start_server {tags {"repl"}} {
start_server {} {
test {First server should have role slave after SLAVEOF} {
r -1 slaveof [srv 0 host] [srv 0 port]
- after 1000
- s -1 role
- } {slave}
+ wait_for_condition 50 100 {
+ [s -1 master_link_status] eq {up}
+ } else {
+ fail "Replication not started."
+ }
+ }
test {If min-slaves-to-write is honored, write is accepted} {
r config set min-slaves-to-write 1