summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/feature_compatibility_version.h
diff options
context:
space:
mode:
authorLingzhi Deng <lingzhi.deng@mongodb.com>2020-07-01 00:14:47 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-07-09 16:26:41 +0000
commit98cf395c1e85d015032a4ef542fb491c47d726c3 (patch)
treecfb5b52286f86006751a7a1a5f143d1cba907c04 /src/mongo/db/commands/feature_compatibility_version.h
parentc8e9a31cd3c21b7b40864e39323fbf0823f79f61 (diff)
downloadmongo-98cf395c1e85d015032a4ef542fb491c47d726c3.tar.gz
SERVER-49063: Update FCV 4.6 constants to 4.5.1
Diffstat (limited to 'src/mongo/db/commands/feature_compatibility_version.h')
-rw-r--r--src/mongo/db/commands/feature_compatibility_version.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mongo/db/commands/feature_compatibility_version.h b/src/mongo/db/commands/feature_compatibility_version.h
index d1058ae57e9..f4d0263f029 100644
--- a/src/mongo/db/commands/feature_compatibility_version.h
+++ b/src/mongo/db/commands/feature_compatibility_version.h
@@ -52,23 +52,23 @@ public:
static Lock::ResourceMutex fcvLock;
/**
- * Records intent to perform a 4.4 -> 4.6 upgrade by updating the on-disk feature
- * compatibility version document to have 'version'=4.4, 'targetVersion'=4.6.
+ * Records intent to perform a 4.4 -> 4.5.1 upgrade by updating the on-disk feature
+ * compatibility version document to have 'version'=4.4, 'targetVersion'=4.5.1.
* Should be called before schemas are modified.
*/
static void setTargetUpgrade(OperationContext* opCtx);
/**
- * Records intent to perform a 4.6 -> 4.4 downgrade by updating the on-disk feature
+ * Records intent to perform a 4.5.1 -> 4.4 downgrade by updating the on-disk feature
* compatibility version document to have 'version'=4.4, 'targetVersion'=4.4.
* Should be called before schemas are modified.
*/
static void setTargetDowngrade(OperationContext* opCtx);
/**
- * Records the completion of a 4.4 <-> 4.6 upgrade or downgrade by updating the on-disk feature
- * compatibility version document to have 'version'=version and unsetting the 'targetVersion'
- * field. Should be called after schemas are modified.
+ * Records the completion of a 4.4 <-> 4.5.1 upgrade or downgrade by updating the on-disk
+ * feature compatibility version document to have 'version'=version and unsetting the
+ * 'targetVersion' field. Should be called after schemas are modified.
*/
static void unsetTargetUpgradeOrDowngrade(OperationContext* opCtx, StringData version);