summaryrefslogtreecommitdiff
path: root/src/mongo/installer
diff options
context:
space:
mode:
authorJon Streets <jonathan.streets@mongodb.com>2021-04-01 01:54:03 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-04-07 15:33:23 +0000
commita1379caecbce080899d6524f7bf4d596379d0e70 (patch)
tree947b1f3c41c34b1a1004e1c5688bd721a3344598 /src/mongo/installer
parent6cf1dbd9e91e17aee4de4a4dcceffa559a53ae66 (diff)
downloadmongo-a1379caecbce080899d6524f7bf4d596379d0e70.tar.gz
SERVER-54434 Update FCV constants to recognize 5.0 as latest
Diffstat (limited to 'src/mongo/installer')
-rw-r--r--src/mongo/installer/msi/SConscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/installer/msi/SConscript b/src/mongo/installer/msi/SConscript
index e2f0ef5fa0c..74c82f86162 100644
--- a/src/mongo/installer/msi/SConscript
+++ b/src/mongo/installer/msi/SConscript
@@ -62,15 +62,15 @@ msi_platform = 'x64'
# Enterprise
if 'enterprise' in env['MONGO_MODULES']:
msi_edition = 'Enterprise'
- upgrade_code = '90222619-e6df-4d7b-a34a-ebead95e016d'
+ upgrade_code = '38f6bdc4-3314-4fe7-a947-2cd4a8892e19'
# Community
else:
if get_option('ssl') == 'on':
msi_edition = 'SSL'
- upgrade_code = 'ccf88af5-51a8-430a-81bd-0ad410c1665d'
+ upgrade_code = '37409c29-deb4-4a4f-9ace-921f8df4bb12'
else:
msi_edition = 'Standard'
- upgrade_code = 'e8440665-7088-446a-adf1-e6fecd2e2c3e'
+ upgrade_code = '404a7067-cc62-4f43-950d-147e81f61d1e'
sourcesList.append("Installer_64.wxs")
@@ -94,7 +94,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) > 4.9:
+if float(major_version) > 5.0:
# 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 " +