Skip to content

Commit e872d7b

Browse files
committed
PYTHON-5180 Use a standard batchtime of one week
1 parent f1fe497 commit e872d7b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.evergreen/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1430,10 +1430,10 @@ buildvariants:
14301430
- debian11-small
14311431
tasks:
14321432
- name: test-gcpkms
1433-
batchtime: 20160 # Use a batchtime of 14 days as suggested by the CSFLE test README
1433+
batchtime: 10080 # 7 days
14341434
- name: test-gcpkms-fail
14351435
- name: test-azurekms
1436-
batchtime: 20160 # Use a batchtime of 14 days as suggested by the CSFLE test README
1436+
batchtime: 10080 # 7 days
14371437
- name: test-azurekms-fail
14381438

14391439
- name: rhel8-test-lambda

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def generate_yaml(tasks=None, variants=None):
234234

235235
def create_ocsp_variants() -> list[BuildVariant]:
236236
variants = []
237-
batchtime = BATCHTIME_WEEK * 2
237+
batchtime = BATCHTIME_WEEK
238238
expansions = dict(AUTH="noauth", SSL="ssl", TOPOLOGY="server")
239239
base_display = "OCSP"
240240

@@ -674,7 +674,7 @@ def create_oidc_auth_variants():
674674
tasks,
675675
get_display_name("Auth OIDC", host),
676676
host=host,
677-
batchtime=BATCHTIME_WEEK * 2,
677+
batchtime=BATCHTIME_WEEK,
678678
)
679679
)
680680
return variants

0 commit comments

Comments
 (0)