Skip to content

Commit

Permalink
Pull latest redis-rs changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
nihohit committed Jan 10, 2024
1 parent 4029871 commit b37a2f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion glide-core/tests/test_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,10 @@ pub(crate) mod shared_client_tests {
let get_result = send_get(&mut test_basics.client, "foobar")
.await
.unwrap_err();
assert!(get_result.is_connection_dropped());
assert!(
get_result.is_connection_dropped()
|| get_result.kind() == redis::ErrorKind::ConnectionNotFound
);
});
}

Expand Down

0 comments on commit b37a2f2

Please sign in to comment.