Skip to content

Commit 7e880ac

Browse files
committed
clean up mod_wsgi
1 parent 7a840fb commit 7e880ac

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,11 +385,11 @@ buildvariants:
385385
MOD_WSGI_VERSION: "4"
386386
TEST_NAME: mod_wsgi
387387
SUB_TEST_NAME: standalone
388-
- name: mod_wsgi-embedded-mode-ubuntu-22
388+
- name: mod_wsgi-embedded-ubuntu-22
389389
tasks:
390390
- name: .test-non-standard .replica_set-noauth-ssl .server-latest
391391
- name: .test-non-standard .standalone-noauth-nossl .server-latest
392-
display_name: Mod_WSGI Embedded-Mode Ubuntu-22
392+
display_name: Mod_WSGI Embedded Ubuntu-22
393393
run_on:
394394
- ubuntu2204-small
395395
expansions:

.evergreen/scripts/generate_config.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -336,11 +336,9 @@ def create_atlas_data_lake_variants():
336336
def create_mod_wsgi_variants():
337337
host = HOSTS["ubuntu22"]
338338
variants = []
339-
for test_type in ["standalone", "embedded-mode"]:
340-
expansions = dict(
341-
MOD_WSGI_VERSION="4", TEST_NAME="mod_wsgi", SUB_TEST_NAME=test_type.split("-")[0]
342-
)
343-
display_name = get_variant_name(f"Mod_WSGI {test_type.title()}", host)
339+
for test_type in ["standalone", "embedded"]:
340+
expansions = dict(MOD_WSGI_VERSION="4", TEST_NAME="mod_wsgi", SUB_TEST_NAME=test_type)
341+
display_name = get_variant_name(f"Mod_WSGI {test_type.capitalize()}", host)
344342
variants.append(
345343
create_variant(
346344
[

0 commit comments

Comments
 (0)