Skip to content

Commit d3b8951

Browse files
authored
TUNE-74: source MongoDB versions from cloud.json to support 8.x binaries on AL2 (#574)
1 parent f8420d2 commit d3b8951

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.evergreen/mongodl.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -623,10 +623,11 @@ def download_file(self, url: str) -> DownloadResult:
623623

624624
def refresh_full_json(self) -> None:
625625
"""
626-
Sync the content of the MongoDB full.json downloads list.
626+
Sync the content of the MongoDB cloud.json downloads list.
627+
cloud.json is a superset of full.json
627628
"""
628629
with self._db.transaction():
629-
dl = self.download_file("https://downloads.mongodb.org/full.json")
630+
dl = self.download_file("https://downloads.mongodb.org/cloud.json")
630631
if not dl.is_changed:
631632
# We still have a good cache
632633
return

0 commit comments

Comments
 (0)