Skip to content

Commit 719c712

Browse files
committed
address review
1 parent 888b7f0 commit 719c712

File tree

2 files changed

+1
-53
lines changed

2 files changed

+1
-53
lines changed

.evergreen/generated_configs/tasks.yml

Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1152,58 +1152,6 @@ tasks:
11521152
tags: [auth_oidc, auth_oidc_remote]
11531153

11541154
# Perf tests
1155-
- name: perf-6.0-standalone-ssl
1156-
commands:
1157-
- func: run server
1158-
vars:
1159-
VERSION: v6.0-perf
1160-
SSL: ssl
1161-
- func: run tests
1162-
vars:
1163-
TEST_NAME: perf
1164-
SUB_TEST_NAME: sync
1165-
- func: attach benchmark test results
1166-
- func: send dashboard data
1167-
tags: [perf]
1168-
- name: perf-6.0-standalone-ssl-async
1169-
commands:
1170-
- func: run server
1171-
vars:
1172-
VERSION: v6.0-perf
1173-
SSL: ssl
1174-
- func: run tests
1175-
vars:
1176-
TEST_NAME: perf
1177-
SUB_TEST_NAME: async
1178-
- func: attach benchmark test results
1179-
- func: send dashboard data
1180-
tags: [perf]
1181-
- name: perf-6.0-standalone
1182-
commands:
1183-
- func: run server
1184-
vars:
1185-
VERSION: v6.0-perf
1186-
SSL: nossl
1187-
- func: run tests
1188-
vars:
1189-
TEST_NAME: perf
1190-
SUB_TEST_NAME: sync
1191-
- func: attach benchmark test results
1192-
- func: send dashboard data
1193-
tags: [perf]
1194-
- name: perf-6.0-standalone-async
1195-
commands:
1196-
- func: run server
1197-
vars:
1198-
VERSION: v6.0-perf
1199-
SSL: nossl
1200-
- func: run tests
1201-
vars:
1202-
TEST_NAME: perf
1203-
SUB_TEST_NAME: async
1204-
- func: attach benchmark test results
1205-
- func: send dashboard data
1206-
tags: [perf]
12071155
- name: perf-8.0-standalone-ssl
12081156
commands:
12091157
- func: run server

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ def create_enterprise_auth_tasks():
952952

953953
def create_perf_tasks():
954954
tasks = []
955-
for version, ssl, sync in product(["6.0", "8.0"], ["ssl", "nossl"], ["sync", "async"]):
955+
for version, ssl, sync in product(["8.0"], ["ssl", "nossl"], ["sync", "async"]):
956956
vars = dict(VERSION=f"v{version}-perf", SSL=ssl)
957957
server_func = FunctionCall(func="run server", vars=vars)
958958
vars = dict(TEST_NAME="perf", SUB_TEST_NAME=sync)

0 commit comments

Comments
 (0)