summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/create_command.cpp
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2022-04-22 19:42:03 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-04-22 20:12:32 +0000
commit90d6271d2f663a4aaf633de5e362972e50e90c21 (patch)
treed24da0cee090d7d92972fa8f43fa4f0eb41ac915 /src/mongo/db/commands/create_command.cpp
parent983a7174c6d792049ef0f54e36a55f93801df89c (diff)
downloadmongo-90d6271d2f663a4aaf633de5e362972e50e90c21.tar.gz
SERVER-60761 Move the global read-only flag to be an OperationContext function
Diffstat (limited to 'src/mongo/db/commands/create_command.cpp')
-rw-r--r--src/mongo/db/commands/create_command.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/create_command.cpp b/src/mongo/db/commands/create_command.cpp
index ebe478ca160..10160cdcc62 100644
--- a/src/mongo/db/commands/create_command.cpp
+++ b/src/mongo/db/commands/create_command.cpp
@@ -97,7 +97,7 @@ public:
void doCheckAuthorization(OperationContext* opCtx) const final {
uassertStatusOK(auth::checkAuthForCreate(
- AuthorizationSession::get(opCtx->getClient()), request(), false));
+ opCtx, AuthorizationSession::get(opCtx->getClient()), request(), false));
}
NamespaceString ns() const final {