proc waitForBgsave r {
while 1 {
- if {[status r bgsave_in_progress] eq 1} {
+ if {[status r rdb_bgsave_in_progress] eq 1} {
if {$::verbose} {
puts -nonewline "\nWaiting for background save to finish... "
flush stdout
proc waitForBgrewriteaof r {
while 1 {
- if {[status r bgrewriteaof_in_progress] eq 1} {
+ if {[status r aof_rewrite_in_progress] eq 1} {
if {$::verbose} {
puts -nonewline "\nWaiting for background AOF rewrite to finish... "
flush stdout
r info persistence
set res [r exec]
assert_match {*scheduled*} [lindex $res 1]
- assert_match {*bgrewriteaof_scheduled:1*} [lindex $res 2]
- while {[string match {*bgrewriteaof_scheduled:1*} [r info persistence]]} {
+ assert_match {*aof_rewrite_scheduled:1*} [lindex $res 2]
+ while {[string match {*aof_rewrite_scheduled:1*} [r info persistence]]} {
after 100
}
}
r exec
} e
assert_match {*ERR*already*} $e
- while {[string match {*bgrewriteaof_scheduled:1*} [r info persistence]]} {
+ while {[string match {*aof_rewrite_scheduled:1*} [r info persistence]]} {
after 100
}
}