From 5f5be1ee330903ce1582386623fe4f9bc28a7801 Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 24 Jan 2018 10:10:45 +0100 Subject: Fix integration test NOREPLICAS error time dependent false positive. --- tests/integration/replication-2.tcl | 9 ++++++--- 1 file 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 -- cgit v1.2.1