File tree 2 files changed +23
-1
lines changed
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,13 @@ proc get_one_of_my_replica {id} {
32
32
}
33
33
set replica_port [lindex [lindex [lindex [R $id role] 2] 0] 1]
34
34
set replica_id_num [get_instance_id_by_port redis $replica_port ]
35
+
36
+ # To avoid -LOADING reply, wait until replica syncs with master.
37
+ wait_for_condition 1000 50 {
38
+ [RI $replica_id_num master_link_status] eq {up}
39
+ } else {
40
+ fail " Replica did not sync in time."
41
+ }
35
42
return $replica_id_num
36
43
}
37
44
@@ -105,8 +112,15 @@ proc test_slave_load_expired_keys {aof} {
105
112
# start the replica again (loading an RDB or AOF file)
106
113
restart_instance redis $replica_id
107
114
115
+ # Replica may start a full sync after restart, trying in a loop to avoid
116
+ # -LOADING reply in that case.
117
+ wait_for_condition 1000 50 {
118
+ [catch {set replica_dbsize_3 [R $replica_id dbsize]} e] == 0
119
+ } else {
120
+ fail " Replica is not up."
121
+ }
122
+
108
123
# make sure the keys are still there
109
- set replica_dbsize_3 [R $replica_id dbsize]
110
124
assert {$replica_dbsize_3 > $replica_dbsize_0 }
111
125
112
126
# restore settings
Original file line number Diff line number Diff line change @@ -2069,6 +2069,14 @@ start_server {tags {"scripting"}} {
2069
2069
} 1 x
2070
2070
2071
2071
r replicaof [srv -1 host] [srv -1 port]
2072
+
2073
+ # To avoid -LOADING reply, wait until replica syncs with master.
2074
+ wait_for_condition 50 100 {
2075
+ [s master_link_status] eq {up}
2076
+ } else {
2077
+ fail " Replica did not sync in time."
2078
+ }
2079
+
2072
2080
assert_error {EXECABORT Transaction discarded because of: READONLY *} {$rr exec}
2073
2081
assert_error {READONLY You can't write against a read only replica. script: *} {$rr2 exec}
2074
2082
$rr close
You can’t perform that action at this time.
0 commit comments