Skip to content

Commit 0e08f22

Browse files
authored
fix test: test_cluster_slot_ownership_changes (#4865)
Signed-off-by: adi_holden <[email protected]>
1 parent e5a0a97 commit 0e08f22

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/dragonfly/cluster_test.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -693,10 +693,10 @@ async def test_cluster_slot_ownership_changes(df_factory: DflyInstanceFactory):
693693
# node0 should have removed "KEY1" as it no longer owns it
694694
# deleting non owned keys is background operation therefore we add timeout to this check
695695
@assert_eventually(times=2)
696-
async def check_dbsize():
697-
assert await c_nodes[0].execute_command("DBSIZE") == 1
696+
async def check_dbsize(node_index, expected_size):
697+
assert await c_nodes[node_index].execute_command("DBSIZE") == expected_size
698698

699-
await check_dbsize()
699+
await check_dbsize(node_index=0, expected_size=1)
700700
# node0 should still own "KEY0" though
701701
assert (await c_nodes[0].get("KEY0")) == "value"
702702
# node1 should still have "KEY2"
@@ -734,7 +734,7 @@ async def check_dbsize():
734734

735735
assert await c_nodes[0].execute_command("DBSIZE") == 1
736736
assert (await c_nodes[0].get("KEY0")) == "value"
737-
assert await c_nodes[1].execute_command("DBSIZE") == 0
737+
await check_dbsize(node_index=1, expected_size=0)
738738

739739

740740
# Tests that master commands to the replica are applied regardless of slot ownership

0 commit comments

Comments
 (0)