Skip to content

Commit

Permalink
fix handling of 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Oct 8, 2024
1 parent 4ef561e commit 184a118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .evergreen/mongodl.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def _import_json_data(self, data: 'Any') -> None:
for ver in data['versions']:
version = ver['version']
key = version[:3]
if mdb_version_not_rc(version) and key in versions and versions[key] is None:
if key in versions and versions[key] is None:
ver = ver.copy()
ver['version'] = key
versions[key] = ver
Expand Down

0 comments on commit 184a118

Please sign in to comment.