Skip to content

Commit bf81271

Browse files
committed
fix ssl handling
1 parent d777606 commit bf81271

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8298,18 +8298,18 @@ tasks:
82988298
tags: [serverless]
82998299

83008300
# Standard non linux tests
8301-
- name: test-v4.0-python3.9-sync-noauth-ssl-standalone
8301+
- name: test-v4.0-python3.9-sync-noauth-nossl-standalone
83028302
commands:
83038303
- func: run server
83048304
vars:
83058305
AUTH: noauth
8306-
SSL: ssl
8306+
SSL: nossl
83078307
TOPOLOGY: standalone
83088308
VERSION: "4.0"
83098309
- func: run tests
83108310
vars:
83118311
AUTH: noauth
8312-
SSL: ssl
8312+
SSL: nossl
83138313
TOPOLOGY: standalone
83148314
VERSION: "4.0"
83158315
PYTHON_VERSION: "3.9"
@@ -8318,7 +8318,7 @@ tasks:
83188318
- standard-non-linux
83198319
- server-4.0
83208320
- "3.9"
8321-
- standalone-noauth-ssl
8321+
- standalone-noauth-nossl
83228322
- name: test-v4.2-python3.10-async-noauth-ssl-replica-set
83238323
commands:
83248324
- func: run server
@@ -8361,18 +8361,18 @@ tasks:
83618361
- server-4.4
83628362
- "3.11"
83638363
- sharded_cluster-auth-ssl
8364-
- name: test-v5.0-python3.12-async-noauth-ssl-standalone
8364+
- name: test-v5.0-python3.12-async-noauth-nossl-standalone
83658365
commands:
83668366
- func: run server
83678367
vars:
83688368
AUTH: noauth
8369-
SSL: ssl
8369+
SSL: nossl
83708370
TOPOLOGY: standalone
83718371
VERSION: "5.0"
83728372
- func: run tests
83738373
vars:
83748374
AUTH: noauth
8375-
SSL: ssl
8375+
SSL: nossl
83768376
TOPOLOGY: standalone
83778377
VERSION: "5.0"
83788378
PYTHON_VERSION: "3.12"
@@ -8381,7 +8381,7 @@ tasks:
83818381
- standard-non-linux
83828382
- server-5.0
83838383
- "3.12"
8384-
- standalone-noauth-ssl
8384+
- standalone-noauth-nossl
83858385
- name: test-v6.0-python3.13-sync-noauth-ssl-replica-set
83868386
commands:
83878387
- func: run server
@@ -8424,18 +8424,18 @@ tasks:
84248424
- server-7.0
84258425
- "3.9"
84268426
- sharded_cluster-auth-ssl
8427-
- name: test-v8.0-python3.10-sync-noauth-ssl-standalone
8427+
- name: test-v8.0-python3.10-sync-noauth-nossl-standalone
84288428
commands:
84298429
- func: run server
84308430
vars:
84318431
AUTH: noauth
8432-
SSL: ssl
8432+
SSL: nossl
84338433
TOPOLOGY: standalone
84348434
VERSION: "8.0"
84358435
- func: run tests
84368436
vars:
84378437
AUTH: noauth
8438-
SSL: ssl
8438+
SSL: nossl
84398439
TOPOLOGY: standalone
84408440
VERSION: "8.0"
84418441
PYTHON_VERSION: "3.10"
@@ -8444,7 +8444,7 @@ tasks:
84448444
- standard-non-linux
84458445
- server-8.0
84468446
- "3.10"
8447-
- standalone-noauth-ssl
8447+
- standalone-noauth-nossl
84488448
- name: test-rapid-python3.11-async-noauth-ssl-replica-set
84498449
commands:
84508450
- func: run server

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ def create_standard_non_linux_tasks():
607607
tasks = []
608608
for version, python, topology, sync in zip_cycle(ALL_VERSIONS, CPYTHONS, TOPOLOGIES, SYNCS):
609609
auth = "auth" if topology == "sharded_cluster" else "noauth"
610-
ssl = "nossl" if topology == "stanadlone" else "ssl"
610+
ssl = "nossl" if topology == "standalone" else "ssl"
611611
tags = ["standard-non-linux", f"server-{version}", python, f"{topology}-{auth}-{ssl}"]
612612
expansions = dict(AUTH=auth, SSL=ssl, TOPOLOGY=topology, VERSION=version)
613613
name = get_task_name("test", python=python, sync=sync, **expansions)

0 commit comments

Comments
 (0)