summaryrefslogtreecommitdiff
path: root/src/mongo/shell/shell_options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/shell/shell_options.cpp')
-rw-r--r--src/mongo/shell/shell_options.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mongo/shell/shell_options.cpp b/src/mongo/shell/shell_options.cpp
index 026cb9af45b..5181719de4f 100644
--- a/src/mongo/shell/shell_options.cpp
+++ b/src/mongo/shell/shell_options.cpp
@@ -61,7 +61,8 @@ using std::vector;
// SERVER-36807: Limit --setShellParameter to SetParameters we know we want to expose.
const std::set<std::string> kSetShellParameterWhitelist = {
- "disabledSecureAllocatorDomains", "newLineAfterPasswordPromptForTest",
+ "disabledSecureAllocatorDomains",
+ "newLineAfterPasswordPromptForTest",
};
std::string getMongoShellHelp(StringData name, const moe::OptionSection& options) {
@@ -321,14 +322,14 @@ Status storeMongoShellOptions(const moe::Environment& params,
auto* param = paramIt->second;
if (!param->allowedToChangeAtStartup()) {
return {ErrorCodes::BadValue,
- str::stream() << "Cannot use --setShellParameter to set '" << name
- << "' at startup"};
+ str::stream()
+ << "Cannot use --setShellParameter to set '" << name << "' at startup"};
}
auto status = param->setFromString(it.second);
if (!status.isOK()) {
return {ErrorCodes::BadValue,
- str::stream() << "Bad value for parameter '" << name << "': "
- << status.reason()};
+ str::stream()
+ << "Bad value for parameter '" << name << "': " << status.reason()};
}
}
}