Commit fc7ea2f7 authored by antirez's avatar antirez
Browse files

Properly wait the slave to sync with master in BRPOPLPUSH test.

parent fb38fd3c
...@@ -2,9 +2,13 @@ start_server {tags {"repl"}} { ...@@ -2,9 +2,13 @@ start_server {tags {"repl"}} {
start_server {} { start_server {} {
test {First server should have role slave after SLAVEOF} { test {First server should have role slave after SLAVEOF} {
r -1 slaveof [srv 0 host] [srv 0 port] r -1 slaveof [srv 0 host] [srv 0 port]
after 1000 wait_for_condition 50 100 {
s -1 role [s -1 role] eq {slave} &&
} {slave} [string match {*master_link_status:up*} [r -1 info]]
} else {
fail "Can't turn the instance into a slave"
}
}
test {BRPOPLPUSH replication, when blocking against empty list} { test {BRPOPLPUSH replication, when blocking against empty list} {
set rd [redis_deferring_client] set rd [redis_deferring_client]
......
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