Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .evergreen/mongodl.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,11 +623,10 @@ def download_file(self, url: str) -> DownloadResult:

def refresh_full_json(self) -> None:
"""
Sync the content of the MongoDB cloud.json downloads list.
cloud.json is a superset of full.json
Sync the content of the MongoDB full.json downloads list.
"""
with self._db.transaction():
dl = self.download_file("https://downloads.mongodb.org/cloud.json")
dl = self.download_file("https://downloads.mongodb.org/full.json")
if not dl.is_changed:
# We still have a good cache
return
Expand Down
Loading