summaryrefslogtreecommitdiff
path: root/src/mongo/shell/bench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/shell/bench.cpp')
-rw-r--r--src/mongo/shell/bench.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/shell/bench.cpp b/src/mongo/shell/bench.cpp
index e1a0616b9fd..2ca618d4e5f 100644
--- a/src/mongo/shell/bench.cpp
+++ b/src/mongo/shell/bench.cpp
@@ -630,7 +630,7 @@ BenchRunOp opFromBson(const BSONObj& op) {
ReadPreference mode;
try {
- mode = ReadPreference_parse(IDLParserErrorContext("mode"), arg.str());
+ mode = ReadPreference_parse(IDLParserContext("mode"), arg.str());
} catch (DBException& e) {
e.addContext("benchRun(): Could not parse readPrefMode argument");
throw;
@@ -900,8 +900,7 @@ void BenchRunWorker::generateLoadOnConnection(DBClientBase* conn) {
str::stream() << "Unable to create session due to error " << result,
conn->runCommand("admin", BSON("startSession" << 1), result));
- lsid.emplace(
- LogicalSessionIdToClient::parse(IDLParserErrorContext("lsid"), result["id"].Obj()));
+ lsid.emplace(LogicalSessionIdToClient::parse(IDLParserContext("lsid"), result["id"].Obj()));
}
BenchRunOp::State opState(&_rng, &bsonTemplateEvaluator, &_statsBlackHole);