File tree Expand file tree Collapse file tree
tests/StackExchange.Redis.Tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ public async Task MovedToSameEndpoint_TriggersReconnectAndRetry_CommandSucceeds(
6060 // Ping the server to ensure it's responsive
6161 var server = conn . GetServer ( listenEndpoint ) ;
6262 log ? . WriteLine ( ( await server . InfoRawAsync ( ) ) ?? "" ) ;
63+ var id = await server . ExecuteAsync ( "client" , "id" ) ;
64+ log ? . WriteLine ( $ "client id: { id } ") ;
65+
6366 await server . PingAsync ( ) ;
6467 // Verify server is detected as cluster mode
6568 Assert . Equal ( ServerType . Cluster , server . ServerType ) ;
@@ -90,5 +93,7 @@ public async Task MovedToSameEndpoint_TriggersReconnectAndRetry_CommandSucceeds(
9093 // Verify reconnection occurred: connection count should have increased by 1
9194 var expectedConnectionCount = initialConnectionCount + 1 ;
9295 Assert . Equal ( expectedConnectionCount , testServer . TotalClientCount ) ;
96+ id = await server . ExecuteAsync ( "client" , "id" ) ;
97+ log ? . WriteLine ( $ "client id: { id } ") ;
9398 }
9499}
You can’t perform that action at this time.
0 commit comments