Skip to content

Commit

Permalink
SERVER-31971 Create new upgrade codes for 3.7.x/3.8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
markbenvenuto committed Nov 14, 2017
1 parent acde99b commit 714b2f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/mongo/installer/msi/SConscript
Expand Up @@ -48,15 +48,15 @@ msi_platform = 'x64'
# Enterprise
if 'enterprise' in env['MONGO_MODULES']:
msi_edition = 'Enterprise'
upgrade_code = '822C75A4-40BA-456B-91D3-C339155F0F90'
upgrade_code = '4E54E7FE-4C19-4291-B21B-6C2742199A6B'
# Community
else:
if has_option('ssl'):
msi_edition = 'SSL'
upgrade_code = 'FDAA2775-060E-4C54-9C19-A84197F3070D'
upgrade_code = '74770C0B-53B0-4F8C-A453-B92CF7448FCD'
else:
msi_edition = 'Standard'
upgrade_code = '7BCCBD4E-AC8A-48BC-9922-E9EBB158A060'
upgrade_code = '94AF64D6-0A84-4238-ACB7-E112E13EE0B4'

sourcesList.append("Installer_64.wxs")

Expand All @@ -80,7 +80,7 @@ major_version = "%s.%s" % (mv[0], mv[1])
# It allows upgrade from 3.2.0 to 3.2.1 in place instead of side-by-side.
# 3. Update the check for the next major release below so we bump the GUIDs in the future.
#
if float(major_version) > 3.6:
if float(major_version) > 3.8:
# If you are troubleshooting this error, see the comment above
env.FatalError("The upgrade codes are out of date for this release. Please \n" +
"replace the existing GUIDs listed in this file with new GUIDs so " +
Expand Down

0 comments on commit 714b2f9

Please sign in to comment.