We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3edf412 commit eb834f7Copy full SHA for eb834f7
src/test/spec/retryable_writes/mod.rs
@@ -360,7 +360,10 @@ async fn label_not_added_second_read_error() {
360
361
#[function_name::named]
362
async fn label_not_added(retry_reads: bool) {
363
- let options = ClientOptions::builder().hosts(vec![]).retry_reads(retry_reads).build();
+ let options = ClientOptions::builder()
364
+ .hosts(vec![])
365
+ .retry_reads(retry_reads)
366
+ .build();
367
let client = TestClient::with_additional_options(Some(options)).await;
368
369
// Configuring a failpoint is only supported on 4.0+ replica sets and 4.1.5+ sharded clusters.
0 commit comments