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
2 changes: 1 addition & 1 deletion .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ buildvariants:

- name: gcp-kms
display_name: "GCP KMS"
# patchable: false
patchable: false
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this snuck in from my last PR

run_on:
# The GCP CLI is not available on RHEL/Ubuntu machines.
- debian11-small
Expand Down
6 changes: 4 additions & 2 deletions src/test/spec/sessions/sessions_not_supported.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ use crate::{

async fn spawn_mongocryptd(name: &str) -> Option<(EventClient, Process)> {
let util_client = Client::for_test().await;
if util_client.server_version_lt(4, 2) {
// TODO RUST-1447: unskip on 8.1+
if util_client.server_version_lt(4, 2) || util_client.server_version_gte(8, 1) {
log_uncaptured(format!(
"Skipping {name}: cannot spawn mongocryptd due to server version < 4.2"
"Skipping {name}: cannot spawn mongocryptd due to server version < 4.2 or server \
version >= 8.1"
));
return None;
}
Expand Down