Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TOOLS-3202: Fix legacy-jstests failure with latest Server (6.1) #509

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/download_mongod_and_shell.py
Expand Up @@ -64,7 +64,7 @@ def download_and_extract_components(self):
if self.wanted.is_latest() or version_is_greater_or_equal(
self.wanted.version, "6.0"
):
for version in ["5.3", "5.2", "5.1", "5.0"]:
for version in ["6.3", "5.3", "5.2", "5.1", "5.0"]:
finder.wanted.version = version
url = finder.url_for_wanted()
if url:
Expand Down