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, 5 insertions, 5 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 9782f1f05bf..de864f2d44f 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
@@ -40,7 +40,7 @@ namespace mongo {
namespace {
/**
- * Sets the minimum allowed version for the cluster. If it is 3.2, then shards should not use 3.4
+ * Sets the minimum allowed version for the cluster. If it is 3.4, then shards should not use 3.6
* features.
*
* Format:
@@ -65,10 +65,10 @@ public:
}
virtual void help(std::stringstream& help) const {
- help << "Set the API version for the cluster. If set to \"3.2\", then 3.4 features are "
- "disabled. If \"3.4\", then 3.4 features are enabled, and all nodes in the cluster "
- "must be version 3.4. See "
- "http://dochub.mongodb.org/core/3.4-feature-compatibility.";
+ help << "Set the API version for the cluster. If set to \"3.4\", then 3.6 features are "
+ "disabled. If \"3.6\", then 3.6 features are enabled, and all nodes in the cluster "
+ "must be version 3.6. See "
+ "http://dochub.mongodb.org/core/3.6-feature-compatibility.";
}
Status checkAuthForCommand(Client* client,