summaryrefslogtreecommitdiff
path: root/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp')
-rw-r--r--src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp b/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp
index ff753df8c69..21f2a9b259e 100644
--- a/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp
+++ b/src/mongo/s/commands/cluster_set_feature_compatibility_version_cmd.cpp
@@ -67,15 +67,13 @@ public:
}
std::string help() const override {
- // TODO: update this comment when FCV 3.4 is removed (SERVER-33179).
return str::stream()
<< "Set the API version for the cluster. If set to \""
- << FeatureCompatibilityVersionCommandParser::kVersion34
- << "\", then 3.6 features are disabled. If \""
<< FeatureCompatibilityVersionCommandParser::kVersion36
- << "\", then 3.6 features are enabled, and all nodes in the cluster must be version "
- << "3.6. If \"4.0\", then 4.0 features are enabled. See "
- << feature_compatibility_version::kDochubLink << ".";
+ << "\", then 4.0 features are disabled. If \""
+ << FeatureCompatibilityVersionCommandParser::kVersion40
+ << "\", then 4.0 features are enabled, and all nodes in the cluster must be version "
+ << "4.0. See " << feature_compatibility_version::kDochubLink << ".";
}
Status checkAuthForCommand(Client* client,