File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -693,10 +693,10 @@ async def test_cluster_slot_ownership_changes(df_factory: DflyInstanceFactory):
693
693
# node0 should have removed "KEY1" as it no longer owns it
694
694
# deleting non owned keys is background operation therefore we add timeout to this check
695
695
@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
698
698
699
- await check_dbsize ()
699
+ await check_dbsize (node_index = 0 , expected_size = 1 )
700
700
# node0 should still own "KEY0" though
701
701
assert (await c_nodes [0 ].get ("KEY0" )) == "value"
702
702
# node1 should still have "KEY2"
@@ -734,7 +734,7 @@ async def check_dbsize():
734
734
735
735
assert await c_nodes [0 ].execute_command ("DBSIZE" ) == 1
736
736
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 )
738
738
739
739
740
740
# Tests that master commands to the replica are applied regardless of slot ownership
You can’t perform that action at this time.
0 commit comments