Skip to content

Commit

Permalink
RUST-894 Unskip write_error::details test on sharded clusters (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
karmenliang authored Feb 2, 2022
1 parent 7da9195 commit 2f6a9e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/spec/write_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ async fn details() {
let _guard = LOCK.run_concurrently().await;
let client = EventClient::new().await;

// TODO: RUST-894 unskip once SERVER-58399 is fixed.
if client.server_version_lt(5, 0) || client.is_sharded() {
if client.server_version_lt(5, 0) {
// SERVER-58399
println!("skipping write_error_details test due to server version");
return;
}

Expand Down

0 comments on commit 2f6a9e3

Please sign in to comment.