Skip to content

Commit 8dff69c

Browse files
committed
Fixed merged issues
Signed-off-by: barshaul <[email protected]>
1 parent 9da21fd commit 8dff69c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

glide-core/redis-rs/redis/src/cluster_async/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2550,7 +2550,7 @@ where
25502550
if let Some(future) = future {
25512551
self.in_flight_requests.push(Box::pin(Request {
25522552
retry_params,
2553-
request: Some(request),
2553+
request,
25542554
future,
25552555
}));
25562556
}

glide-core/redis-rs/redis/tests/auth.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)