summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortycho garen <garen@tychoish.com>2019-06-03 15:43:36 -0400
committertycho garen <garen@tychoish.com>2019-06-03 15:43:36 -0400
commit89e7419a897b2270931c9c029abf6de555d83e0f (patch)
treea2502f30a489344218f174707221bc297e76e57f
parent47ca83f447f651fa757d995bc65638d7599e1e5a (diff)
downloadmongo-r4.3.0.tar.gz
SERVER-41226: update MSI upgrade codes for 4.3r4.3.0
-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 84403c73c92..a6b2406b8e2 100644
--- a/src/mongo/installer/msi/SConscript
+++ b/src/mongo/installer/msi/SConscript
@@ -95,15 +95,15 @@ msi_platform = 'x64'
# Enterprise
if 'enterprise' in env['MONGO_MODULES']:
msi_edition = 'Enterprise'
- upgrade_code = '0375833f-c12d-4faa-9a83-60730647cac3'
+ upgrade_code = 'ccd97a61-fd75-4645-b6a9-f1cd4b8235c1'
# Community
else:
if get_option('ssl') == 'on':
msi_edition = 'SSL'
- upgrade_code = '8a8f9bb3-27f7-4e47-b9a0-e52c92639e44'
+ upgrade_code = 'ea0c66de-dc03-4c28-9f2b-60edacc44ed7'
else:
msi_edition = 'Standard'
- upgrade_code = 'ff2207b3-15d7-48d8-bceb-9551c447b4de'
+ upgrade_code = '45544685-4981-4f1d-a1fe-302539b110bf'
sourcesList.append("Installer_64.wxs")
@@ -127,7 +127,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.2:
+if float(major_version) > 4.4:
# 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 " +