Skip to content

Commit dec25d7

Browse files
committed
use debian12
1 parent ad2401c commit dec25d7

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.evergreen/scripts/kms_tester.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ def setup_kms(sub_test_name: str) -> None:
9191
create_archive()
9292
if sub_test_target == "azure":
9393
os.environ["AZUREKMS_VMNAME_PREFIX"] = "PYTHON_DRIVER"
94-
94+
os.environ["AZUREKMS_IMAGE"] = "Debian12"
95+
else:
96+
os.environ["GCPKMS_IMAGEFAMILY"] = "debian12"
9597
run_command("./setup.sh", cwd=kms_dir)
9698
base_env = _load_kms_config(sub_test_target)
9799

test/asynchronous/test_cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ async def test_explain_csot(self):
368368
client = await self.async_rs_or_single_client(event_listeners=[listener])
369369

370370
# Create a collection, referred to as collection, with the namespace explain-test.collection.
371-
# Workaround for SERVER-XXXX (TODO)
371+
# Workaround for SERVER-108463
372372
names = await client["explain-test"].list_collection_names()
373373
if "collection" not in names:
374374
collection = await client["explain-test"].create_collection("collection")

test/test_cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def test_explain_csot(self):
360360
client = self.rs_or_single_client(event_listeners=[listener])
361361

362362
# Create a collection, referred to as collection, with the namespace explain-test.collection.
363-
# Workaround for SERVER-XXXX (TODO)
363+
# Workaround for SERVER-108463
364364
names = client["explain-test"].list_collection_names()
365365
if "collection" not in names:
366366
collection = client["explain-test"].create_collection("collection")

0 commit comments

Comments
 (0)