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 4139b56 commit 0b44613Copy full SHA for 0b44613
src/test/csfle.rs
@@ -3498,6 +3498,11 @@ async fn range_explicit_encryption_defaults() -> Result<()> {
3498
// using openssl causes errors after configuring a network failpoint
3499
#[cfg(not(feature = "openssl-tls"))]
3500
async fn kms_retry() {
3501
+ if *super::SERVERLESS {
3502
+ log_uncaptured("skipping kms_retry on serverless");
3503
+ return;
3504
+ }
3505
+
3506
use reqwest::{Certificate, Client as HttpClient};
3507
3508
let endpoint = "127.0.0.1:9003";
0 commit comments