mirror of https://github.com/mongodb/mongo
fix: extra single quote in error 5491300
This commit is contained in:
parent
686fc5e076
commit
e5cfa82d7d
|
|
@ -107,7 +107,7 @@ void assertAllowedInternalIfRequired(const OperationContext* opCtx,
|
|||
const auto isInternal = isInternalClient(opCtx->getClient());
|
||||
|
||||
uassert(5491300,
|
||||
str::stream() << operatorName << "' is not allowed in user requests",
|
||||
str::stream() << operatorName << " is not allowed in user requests",
|
||||
!(allowedWithClientType == AllowedWithClientType::kInternal && !isInternal));
|
||||
}
|
||||
} // namespace mongo
|
||||
|
|
|
|||
Loading…
Reference in New Issue