Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/cmap/conn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,8 @@ impl PinnedConnectionHandle {
}
}

/// Retrieve the pinned connection. Will fail if the connection has been unpinned or is still in
/// use.
/// Retrieve the pinned connection. Will fail if the connection has been unpinned or is still
/// in use.
pub(crate) async fn take_connection(&self) -> Result<PooledConnection> {
use tokio::sync::mpsc::error::TryRecvError;
let mut receiver = self.receiver.lock().await;
Expand Down
5 changes: 5 additions & 0 deletions src/test/csfle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3498,6 +3498,11 @@ async fn range_explicit_encryption_defaults() -> Result<()> {
// using openssl causes errors after configuring a network failpoint
#[cfg(not(feature = "openssl-tls"))]
async fn kms_retry() {
if *super::SERVERLESS {
log_uncaptured("skipping kms_retry on serverless");
return;
}

use reqwest::{Certificate, Client as HttpClient};

let endpoint = "127.0.0.1:9003";
Expand Down