Skip to content

Commit

Permalink
deflake "Steady state after dual conn sync"
Browse files Browse the repository at this point in the history
Signed-off-by: naglera <[email protected]>
  • Loading branch information
naglera committed Jul 12, 2024
1 parent b1c6487 commit c3e9316
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions tests/integration/repl-dual-connection-sync.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,10 @@ start_server {tags {"repl dual-connection external:skip"}} {
stop_write_load $load_handle3

test "Steady state after dual conn sync" {
set val1 [$primary get mykey1]
set val2 [$primary get mykey2]
set val3 [$primary get mykey3]
wait_for_condition 50 1000 {
([$replica get "mykey1"] eq $val1) &&
([$replica get "mykey2"] eq $val2) &&
([$replica get "mykey3"] eq $val3)
([$replica get "mykey1"] eq [$primary get mykey1]) &&
([$replica get "mykey2"] eq [$primary get mykey2]) &&
([$replica get "mykey3"] eq [$primary get mykey3])
} else {
fail "Can't set new keys"
}
Expand Down

0 comments on commit c3e9316

Please sign in to comment.