Skip to content

Commit

Permalink
Fixed merged issues
Browse files Browse the repository at this point in the history
Signed-off-by: barshaul <[email protected]>
  • Loading branch information
barshaul committed Nov 14, 2024
1 parent 9da21fd commit 8dff69c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion glide-core/redis-rs/redis/src/cluster_async/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2550,7 +2550,7 @@ where
if let Some(future) = future {
self.in_flight_requests.push(Box::pin(Request {
retry_params,
request: Some(request),
request,
future,
}));
}
Expand Down
1 change: 0 additions & 1 deletion glide-core/redis-rs/redis/tests/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ mod auth {
create_connection(None, ConnectionType::Cluster, Some(&cluster_context), None).await;
assert!(connection_should_fail.is_err());
let err = connection_should_fail.err().unwrap();
println!("{}", err.to_string());
assert!(err.to_string().contains("Authentication required."));

// Test that we can connect with password
Expand Down

0 comments on commit 8dff69c

Please sign in to comment.