mirror of https://mirror.osredm.com/root/redis.git
Fix 'load corrupted rdb with no CRC' test (#12629)
After the change in #12626 (2e0f6724e
), the is_alive proc gets pid and not
server config.
This PR aligns it in 'load corrupted rdb with no CRC' test.
This commit is contained in:
parent
31c3172d9b
commit
2cf50ddbad
|
@ -146,7 +146,7 @@ test {corrupt payload: load corrupted rdb with no CRC - #3505} {
|
|||
|
||||
# wait for termination
|
||||
wait_for_condition 100 50 {
|
||||
! [is_alive $srv]
|
||||
! [is_alive [dict get $srv pid]]
|
||||
} else {
|
||||
fail "rdb loading didn't fail"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue