File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
glide-core/redis-rs/redis Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -1969,8 +1969,6 @@ where
19691969 }
19701970
19711971 /// Handles MOVED errors by updating the client's slot and node mappings based on the new primary's role:
1972- /// /// Updates the slot and node mappings in response to a MOVED error.
1973- /// This function handles various scenarios based on the new primary's role:
19741972 ///
19751973 /// 1. **No Change**: If the new primary is already the current slot owner, no updates are needed.
19761974 /// 2. **Failover**: If the new primary is a replica within the same shard (indicating a failover),
@@ -2550,7 +2548,7 @@ where
25502548 if let Some ( future) = future {
25512549 self . in_flight_requests . push ( Box :: pin ( Request {
25522550 retry_params,
2553- request : Some ( request ) ,
2551+ request,
25542552 future,
25552553 } ) ) ;
25562554 }
Original file line number Diff line number Diff line change @@ -134,7 +134,6 @@ mod auth {
134134 create_connection ( None , ConnectionType :: Cluster , Some ( & cluster_context) , None ) . await ;
135135 assert ! ( connection_should_fail. is_err( ) ) ;
136136 let err = connection_should_fail. err ( ) . unwrap ( ) ;
137- println ! ( "{}" , err. to_string( ) ) ;
138137 assert ! ( err. to_string( ) . contains( "Authentication required." ) ) ;
139138
140139 // Test that we can connect with password
You can’t perform that action at this time.
0 commit comments