summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun Verch <shaun.verch@mongodb.com>2014-03-31 16:42:11 -0400
committerShaun Verch <shaun.verch@mongodb.com>2014-03-31 17:30:49 -0400
commit7ac1d212730ad3b1d03b4f10f18e52fa42914c64 (patch)
tree7020ed0178dd4303adfc7c267a4693437ac89152
parent1aa9b7b3749064a7fd150203102e142f5415754e (diff)
downloadmongo-7ac1d212730ad3b1d03b4f10f18e52fa42914c64.tar.gz
SERVER-13423 Rename security.sasl.authenticationMechanisms to security.authenticationMechanisms
(cherry picked from commit ae59693a8b1f2ed6dbef552ed479671ba70cfc49)
-rw-r--r--src/mongo/db/mongod_options.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mongo/db/mongod_options.cpp b/src/mongo/db/mongod_options.cpp
index fd1f3c17b95..21348fe86ab 100644
--- a/src/mongo/db/mongod_options.cpp
+++ b/src/mongo/db/mongod_options.cpp
@@ -110,10 +110,6 @@ namespace mongo {
general_options.addOptionChaining("security.authSchemaVersion", "", moe::String, "TODO")
.setSources(moe::SourceYAMLConfig);
- general_options.addOptionChaining("security.authenticationMechanisms", "", moe::String,
- "TODO")
- .setSources(moe::SourceYAMLConfig);
-
general_options.addOptionChaining("security.enableLocalhostAuthBypass", "", moe::String,
"TODO")
.setSources(moe::SourceYAMLConfig);
@@ -792,12 +788,6 @@ namespace mongo {
"security.authSchemaVersion is currently not supported in config files");
}
- if (params.count("security.authenticationMechanisms")) {
- return Status(ErrorCodes::BadValue,
- "security.authenticationMechanisms is currently not supported in config "
- "files");
- }
-
if (params.count("security.enableLocalhostAuthBypass")) {
return Status(ErrorCodes::BadValue,
"security.enableLocalhostAuthBypass is currently not supported in config "