summaryrefslogtreecommitdiff
path: root/src/mongo/shell
diff options
context:
space:
mode:
authorGabriel Marks <gabriel.marks@mongodb.com>2022-08-30 19:28:35 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-08-30 21:12:24 +0000
commit36b8246daa269b1a21d63d3f0e11c31b274e6703 (patch)
tree121fc5483e0bdd2effb73d6ac5e913761bb43ba6 /src/mongo/shell
parent27f7896edc0828d0c4bae3d70bbec7e8b0a66d98 (diff)
downloadmongo-36b8246daa269b1a21d63d3f0e11c31b274e6703.tar.gz
SERVER-68342 Modify ServerParameter to take tenantId
Diffstat (limited to 'src/mongo/shell')
-rw-r--r--src/mongo/shell/shell_options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/shell/shell_options.cpp b/src/mongo/shell/shell_options.cpp
index 48b1d9fdf71..e23f89ff7dc 100644
--- a/src/mongo/shell/shell_options.cpp
+++ b/src/mongo/shell/shell_options.cpp
@@ -322,7 +322,7 @@ Status storeMongoShellOptions(const moe::Environment& params,
str::stream()
<< "Cannot use --setShellParameter to set '" << name << "' at startup"};
}
- auto status = param->setFromString(it.second);
+ auto status = param->setFromString(it.second, boost::none);
if (!status.isOK()) {
return {ErrorCodes::BadValue,
str::stream()